From ed46f1c5e82709417085b1a3b7708b209c5f4bfe Mon Sep 17 00:00:00 2001 From: ottjk Date: Sat, 30 Dec 2023 19:23:04 -0500 Subject: initial commit --- nvim/lua/commands.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 nvim/lua/commands.lua (limited to 'nvim/lua/commands.lua') diff --git a/nvim/lua/commands.lua b/nvim/lua/commands.lua new file mode 100644 index 0000000..8714158 --- /dev/null +++ b/nvim/lua/commands.lua @@ -0,0 +1,10 @@ +vim.api.nvim_create_autocmd("ColorScheme", { + pattern = "*", + callback = function() + package.loaded["feline"] = nil + package.loaded["catppuccin.groups.integrations.feline"] = nil + require("feline").setup { + components = require("catppuccin.groups.integrations.feline").get(), + } + end, +}) -- cgit v1.3