move colorscheme.lua back to core for consistency

This commit is contained in:
2024-11-22 11:43:41 -05:00
parent 962d850b5e
commit a6ba56aa88
2 changed files with 20 additions and 16 deletions
+6 -2
View File
@@ -13,12 +13,16 @@ end
vim.opt.rtp:prepend(lazypath)
-- lazy setup
require("lazy").setup({ { import = "plugins" }, { import = "plugins.lsp" } }, {
require("lazy").setup({
{ import = "core.colorscheme" },
{ import = "plugins" },
{ import = "plugins.lsp" },
}, {
checker = {
enabled = true,
notify = false,
},
change_detection = {
notify = false,
}
},
})