Added initial nvim config

This commit is contained in:
Luka Jankovic 2025-01-04 13:41:50 +01:00
parent aca7a8c3bb
commit 5d0ed8da19
15 changed files with 282 additions and 0 deletions

View file

@ -0,0 +1,14 @@
return {
"folke/which-key.nvim",
event = "VeryLazy",
opts = {},
keys = {
{
"<leader>?",
function()
require("which-key").show({ global = false })
end,
desc = "Buffer Local Keymaps (which-key)",
},
},
}