🚀 perf(nvim): remove setting lazyvim colorscheme, now uses theme-loader by default
This commit is contained in:
parent
08d024caf3
commit
595560bb82
2 changed files with 15 additions and 10 deletions
|
@ -90,10 +90,4 @@ return {
|
|||
}),
|
||||
},
|
||||
},
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "catppuccin",
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
@ -1,6 +1,17 @@
|
|||
return {
|
||||
"rafi/theme-loader.nvim",
|
||||
lazy = false,
|
||||
priority = 999,
|
||||
opts = {},
|
||||
{
|
||||
"rafi/theme-loader.nvim",
|
||||
lazy = false,
|
||||
priority = 999,
|
||||
opts = {},
|
||||
},
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
config = function(_, opts)
|
||||
opts = opts or {}
|
||||
-- disable the colorscheme
|
||||
opts.colorscheme = function() end
|
||||
require("lazyvim").setup(opts)
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue