diff --git a/lua/custom/plugins/theme.lua b/lua/custom/plugins/theme.lua new file mode 100644 index 00000000..3bff8c6d --- /dev/null +++ b/lua/custom/plugins/theme.lua @@ -0,0 +1,12 @@ +-- Theme configuration + +return { + { + 'catppuccin/nvim', + priority = 1000, + config = function() + vim.cmd.colorscheme 'catppuccin-mocha' + end, + }, + { 'folke/tokyonight.nvim', enabled = false }, +}