chore: some qol crap

This commit is contained in:
Mariano Z. 2025-04-02 18:07:53 -03:00
parent 867159343a
commit 6fb744cdae
Signed by: marianozunino
GPG key ID: 4C73BAD25156DACE
34 changed files with 433 additions and 598 deletions

25
lua/plugins/whichkey.lua Normal file
View file

@ -0,0 +1,25 @@
local M = {
"folke/which-key.nvim",
event = "VeryLazy",
init = function()
vim.o.timeout = true
vim.o.timeoutlen = 500
end,
}
M.config = function()
require("which-key").setup({
win = {
border = "single",
},
plugins = {
marks = true,
registers = true,
spelling = {
enabled = false,
},
},
})
end
return M