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