feat: Reworking nvim configuration

This commit is contained in:
2024-12-20 09:48:54 -05:00
parent 876e7f6d0e
commit 6cdf85b4e3
13 changed files with 426 additions and 567 deletions

View File

@@ -1,8 +1,16 @@
return {
"folke/which-key.nvim",
event = "VeryLazy",
init = function()
vim.o.timeout = true
vim.o.timeoutlen = 300
end,
}
"folke/which-key.nvim",
event = "VeryLazy",
opts = {
preset = "helix",
},
keys = {
{
"<leader>?",
function()
require("which-key").show({ global = false })
end,
desc = "Buffer Local Keymaps (which-key)",
},
},
}