diff options
Diffstat (limited to 'public/nvim/.nvim/lua/plugins/eyecandy/themes.lua')
-rw-r--r-- | public/nvim/.nvim/lua/plugins/eyecandy/themes.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/public/nvim/.nvim/lua/plugins/eyecandy/themes.lua b/public/nvim/.nvim/lua/plugins/eyecandy/themes.lua new file mode 100644 index 0000000..69bbe99 --- /dev/null +++ b/public/nvim/.nvim/lua/plugins/eyecandy/themes.lua @@ -0,0 +1,24 @@ +return { + { + "catppuccin/nvim", + lazy = false, + priority = 1000, + name = "catppuccin", + config = function() + local catp = require("catppuccin") + catp.setup({ + flavour = "frappe", + integrations = { + which_key = true, + illuminate = true, + lsp_trouble = true, + navic = { + enabled = true, + custom_bg = "NONE", + }, + }, + }) + vim.api.nvim_command("colorscheme catppuccin") + end, + }, +} |