nvim config

This commit is contained in:
sebastian
2025-04-10 14:36:56 +02:00
parent e2f101f3ce
commit ac74fb8b70
18 changed files with 346 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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)",
},
},
}