🚀 perf(nvim): remove setting lazyvim colorscheme, now uses theme-loader by default

This commit is contained in:
Sergio Laín 2024-01-03 00:13:41 +01:00
parent 08d024caf3
commit 595560bb82
No known key found for this signature in database
GPG key ID: 14C9B8080681777B
2 changed files with 15 additions and 10 deletions

View file

@ -90,10 +90,4 @@ return {
}), }),
}, },
}, },
{
"LazyVim/LazyVim",
opts = {
colorscheme = "catppuccin",
},
},
} }

View file

@ -1,6 +1,17 @@
return { return {
"rafi/theme-loader.nvim", {
lazy = false, "rafi/theme-loader.nvim",
priority = 999, lazy = false,
opts = {}, priority = 999,
opts = {},
},
{
"LazyVim/LazyVim",
config = function(_, opts)
opts = opts or {}
-- disable the colorscheme
opts.colorscheme = function() end
require("lazyvim").setup(opts)
end,
},
} }