diff options
Diffstat (limited to 'lua')
-rw-r--r-- | lua/plugins/core/theme.lua | 14 | ||||
-rw-r--r-- | lua/plugins/eyecandy/themes.lua | 46 |
2 files changed, 14 insertions, 46 deletions
diff --git a/lua/plugins/core/theme.lua b/lua/plugins/core/theme.lua new file mode 100644 index 0000000..1d7b97f --- /dev/null +++ b/lua/plugins/core/theme.lua @@ -0,0 +1,14 @@ +return { + { + "catppuccin/nvim", + enabled = true, + lazy = false, + priority = 1000, + name = "catppuccin", + config = function() + local catp = require("catppuccin") + catp.setup({ flavour = "frappe" }) + vim.api.nvim_command("colorscheme catppuccin") + end, + } +} diff --git a/lua/plugins/eyecandy/themes.lua b/lua/plugins/eyecandy/themes.lua deleted file mode 100644 index 3d6414e..0000000 --- a/lua/plugins/eyecandy/themes.lua +++ /dev/null @@ -1,46 +0,0 @@ -return { - { - "catppuccin/nvim", - enabled = true, - lazy = false, - priority = 1000, - name = "catppuccin", - config = function() - local catp = require("catppuccin") - catp.setup({ - flavour = "frappe", - integrations = { - indent_blankline = true, - which_key = true, - illuminate = true, - lsp_trouble = true, - navic = { - enabled = true, - custom_bg = "NONE", - }, - }, - }) - 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() - require("gruvbox").setup({}) - vim.api.nvim_command("colorscheme gruvbox") - end, - }, -} |