From 542613a0f58ccb3722c93b4b68677d7b5053fd57 Mon Sep 17 00:00:00 2001 From: Christian Segundo Date: Thu, 12 Oct 2023 15:29:11 +0200 Subject: Add nvim --- public/nvim/.nvim/lua/plugins/eyecandy/themes.lua | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 public/nvim/.nvim/lua/plugins/eyecandy/themes.lua (limited to 'public/nvim/.nvim/lua/plugins/eyecandy/themes.lua') 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, + }, +} -- cgit v1.2.3