init: initial commit
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
-- lazy.nvim bootstrap
|
||||
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||
if not vim.loop.fs_stat(lazypath) then
|
||||
vim.fn.system({
|
||||
"git", "clone", "--filter=blob:none",
|
||||
"https://github.com/folke/lazy.nvim.git",
|
||||
"--branch=stable",
|
||||
lazypath,
|
||||
})
|
||||
end
|
||||
vim.opt.rtp:prepend(lazypath)
|
||||
|
||||
require("lazy").setup({
|
||||
spec = {
|
||||
{ import = "plugins" },
|
||||
},
|
||||
defaults = { lazy = true },
|
||||
install = { colorscheme = { "gruvbox" } },
|
||||
checker = { enabled = true },
|
||||
ui = { border = "rounded" },
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user