dotfiles/.config/nvim/lua/plugins/extras/ui/theme-loader.lua
2024-02-26 11:16:44 +01:00

17 lines
309 B
Lua

return {
{
"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,
},
}