Add lazy config options back
This commit is contained in:
parent
3505bb8abe
commit
396e683145
|
@ -13,7 +13,7 @@ if not vim.loop.fs_stat(lazypath) then
|
|||
}
|
||||
end
|
||||
vim.opt.rtp:prepend(lazypath)
|
||||
require("lazy").setup "plugins"
|
||||
require("lazy").setup("plugins", require("config.lazy"))
|
||||
|
||||
-- Set vim options
|
||||
require "config"
|
||||
|
|
14
config/nvim/lua/config/lazy.lua
Normal file
14
config/nvim/lua/config/lazy.lua
Normal file
|
@ -0,0 +1,14 @@
|
|||
return {
|
||||
dev = {
|
||||
path = "~/Projects/lua/nvim",
|
||||
},
|
||||
install = {
|
||||
colorscheme = {
|
||||
"catppuccin",
|
||||
"habamax",
|
||||
},
|
||||
},
|
||||
checker = {
|
||||
enabled = true,
|
||||
},
|
||||
}
|
Loading…
Reference in a new issue