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
+20 -16
View File
@@ -1,24 +1,28 @@
-- lazy bootstrap -- lazy bootstrap
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then if not vim.loop.fs_stat(lazypath) then
vim.fn.system({ vim.fn.system({
"git", "git",
"clone", "clone",
"--filter=blob:none", "--filter=blob:none",
"https://github.com/folke/lazy.nvim.git", "https://github.com/folke/lazy.nvim.git",
"--branch=stable", "--branch=stable",
lazypath, lazypath,
}) })
end end
vim.opt.rtp:prepend(lazypath) vim.opt.rtp:prepend(lazypath)
-- lazy setup -- lazy setup
require("lazy").setup({ { import = "plugins" }, { import = "plugins.lsp" } }, { require("lazy").setup({
checker = { { import = "core.colorscheme" },
enabled = true, { import = "plugins" },
notify = false, { import = "plugins.lsp" },
}, }, {
change_detection = { checker = {
notify = false, enabled = true,
} notify = false,
},
change_detection = {
notify = false,
},
}) })