Initial commit

This commit is contained in:
2022-11-29 05:22:32 -08:00
commit ed70bfe63c
4 changed files with 1158 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
local function bootstrap(pkg, repo)
local plug_dir = vim.fn.stdpath('data') .. '/site/pack/packer/start/' .. pkg
if vim.fn.isdirectory(plug_dir) ~= 1 then
vim.fn.system({ 'git', 'clone', '--depth', '1', repo, plug_dir })
vim.cmd.packadd(pkg)
end
end
bootstrap('packer.nvim', 'https://github.com/wbthomason/packer.nvim')
bootstrap('tangerine.nvim', 'https://github.com/udayvir-singh/tangerine.nvim')
require('tangerine').setup({
compiler = {
hooks = {
"oninit"
}
}
})