diff --git a/.config/nvim/lua/config/lazy.lua b/.config/nvim/lua/config/lazy.lua new file mode 100644 --- /dev/null +++ b/.config/nvim/lua/config/lazy.lua @@ -0,0 +1,21 @@ +require("lazy-bootstrap").setup({ + spec = { + { "nanotech/jellybeans.vim", + priority = 1000, + config = function() vim.cmd.colorscheme("jellybeans") end }, + { import = "plugins" } + }, + change_detection = { enabled = false }, + performance = { + rtp = { + disabled_plugins = { + "gzip", + "tarPlugin", + "tohtml", + "zipPlugin", + "tutor", + }, + }, + }, +}) +