diff options
Diffstat (limited to 'lua/plugins/eyecandy')
-rw-r--r-- | lua/plugins/eyecandy/themes.lua | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/lua/plugins/eyecandy/themes.lua b/lua/plugins/eyecandy/themes.lua index de7d2d4..118dbba 100644 --- a/lua/plugins/eyecandy/themes.lua +++ b/lua/plugins/eyecandy/themes.lua @@ -1,13 +1,14 @@ return { { "catppuccin/nvim", + enabled = true, lazy = false, priority = 1000, name = "catppuccin", config = function() local catp = require("catppuccin") catp.setup({ - flavour = "latte", + flavour = "frappe", integrations = { indent_blankline = true, which_key = true, @@ -19,12 +20,22 @@ return { }, }, }) - --vim.api.nvim_command("colorscheme catppuccin") + vim.api.nvim_command("colorscheme catppuccin") + end, + }, + { + "projekt0n/github-nvim-theme", + enabled = false, + lazy = false, + priority = 1000, + config = function() + require("github-theme").setup({}) + vim.api.nvim_command("colorscheme github_dark_dimmed") end, }, - { "ellisonleao/gruvbox.nvim", + enabled = false, lazy = false, priority = 1000, config = function() |