Archived
Initial commit
This commit is contained in:
@@ -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"
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user