diff --git a/lua/custom/plugins/colorscheme.lua b/lua/custom/plugins/colorscheme.lua new file mode 100644 index 00000000000..27eade3b28c --- /dev/null +++ b/lua/custom/plugins/colorscheme.lua @@ -0,0 +1,10 @@ +return { + 'datsfilipe/min-theme.nvim', + priority = 1000, + config = function() + require('min-theme').setup { + theme = 'dark', + } + vim.cmd.colorscheme 'min-theme' + end, +}