summaryrefslogtreecommitdiff
path: root/lua/plugins/core/theme.lua
diff options
context:
space:
mode:
authorChristian Segundo2025-01-17 20:38:55 +0100
committerChristian Segundo2025-01-17 20:38:55 +0100
commitc85520e993772da18113191e3ab70ba623508dfb (patch)
treea93a1dddc974cd23adff6c43efb4a7e78092f8cf /lua/plugins/core/theme.lua
parentb0db9d2cb68b76614c9343511c3a327e31a6b31c (diff)
downloadconfig-c85520e993772da18113191e3ab70ba623508dfb.tar.gz
Move themes to core and remove all unused ones
Diffstat (limited to 'lua/plugins/core/theme.lua')
-rw-r--r--lua/plugins/core/theme.lua14
1 files changed, 14 insertions, 0 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,
+ }
+}