summaryrefslogtreecommitdiff
path: root/public/nvim/.nvim/lua/plugins/eyecandy/themes.lua
diff options
context:
space:
mode:
Diffstat (limited to 'public/nvim/.nvim/lua/plugins/eyecandy/themes.lua')
-rw-r--r--public/nvim/.nvim/lua/plugins/eyecandy/themes.lua25
1 files changed, 0 insertions, 25 deletions
diff --git a/public/nvim/.nvim/lua/plugins/eyecandy/themes.lua b/public/nvim/.nvim/lua/plugins/eyecandy/themes.lua
deleted file mode 100644
index 42e5d6c..0000000
--- a/public/nvim/.nvim/lua/plugins/eyecandy/themes.lua
+++ /dev/null
@@ -1,25 +0,0 @@
-return {
- {
- "catppuccin/nvim",
- 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,
- },
-}