This repository has been archived on 2024-10-28. You can view files and clone it, but cannot push or open issues or pull requests.
nvim-config/init.lua

21 lines
588 B
Lua

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)
return true
end
return false
end
_G.first_launch = 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"
}
}
})