From c85520e993772da18113191e3ab70ba623508dfb Mon Sep 17 00:00:00 2001 From: Christian Segundo Date: Fri, 17 Jan 2025 20:38:55 +0100 Subject: Move themes to core and remove all unused ones --- lua/plugins/core/theme.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lua/plugins/core/theme.lua (limited to 'lua/plugins/core/theme.lua') 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, + } +} -- cgit v1.2.3