Add lazy config options back

This commit is contained in:
Evie Litherland-Smith 2023-02-21 07:07:13 +00:00
parent 3505bb8abe
commit 396e683145
2 changed files with 15 additions and 1 deletions

View file

@ -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"

View file

@ -0,0 +1,14 @@
return {
dev = {
path = "~/Projects/lua/nvim",
},
install = {
colorscheme = {
"catppuccin",
"habamax",
},
},
checker = {
enabled = true,
},
}