Added transparents and removed which-key

This commit is contained in:
2026-02-15 21:35:29 -05:00
parent 8dcaddcf81
commit cf5e079124
3 changed files with 7 additions and 29 deletions

View File

@@ -2,12 +2,12 @@ return { "catppuccin/nvim", name = "catppuccin", priority = 1000,
config = function()
require("catppuccin").setup({
flavour = "mocha",
flavour = "mocha",
transparent_background = true,
background = {
light = "latte",
dark = "mocha",
},
transparent_background = false, -- disables setting the background color.
float = {
transparent = true, -- enable transparent floating windows
},

View File

@@ -1,18 +0,0 @@
return {
"folke/which-key.nvim",
event = "VeryLazy",
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
},
keys = {
{
"<leader>?",
function()
require("which-key").show({ global = false })
end,
desc = "Buffer Local Keymaps (which-key)",
},
},
}