add nvim config

This commit is contained in:
xSghetti 2024-07-16 23:13:44 -04:00
parent e740023762
commit 4dbb2cbe7e
31 changed files with 691 additions and 0 deletions

View file

@ -0,0 +1,20 @@
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", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup({ { import = "crux.plugins" }, { import = "crux.plugins.lsp" } }, {
checker = {
enabled = true,
notify = false,
},
})