diff options
author | Christian Segundo | 2025-01-17 22:36:51 +0100 |
---|---|---|
committer | Christian Segundo | 2025-01-17 22:36:51 +0100 |
commit | 08e4967222ed28f5b3c6df469922aaa586d2077b (patch) | |
tree | f59b58de5b01b6c158c6cd83cbb77cf5606f0294 /lua/plugins/core | |
parent | 35fb0befd67d19a11a315e6b99d515a0bf64dbc2 (diff) | |
download | config-08e4967222ed28f5b3c6df469922aaa586d2077b.tar.gz |
misc
Diffstat (limited to 'lua/plugins/core')
-rw-r--r-- | lua/plugins/core/theme.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lua/plugins/core/theme.lua b/lua/plugins/core/theme.lua index 1d7b97f..9ba1376 100644 --- a/lua/plugins/core/theme.lua +++ b/lua/plugins/core/theme.lua @@ -6,8 +6,7 @@ return { priority = 1000, name = "catppuccin", config = function() - local catp = require("catppuccin") - catp.setup({ flavour = "frappe" }) + require("catppuccin").setup({ flavour = "frappe" }) vim.api.nvim_command("colorscheme catppuccin") end, } |