[nvim] customize whichkey for less interuption

This commit is contained in:
eleith 2023-02-15 16:26:37 +00:00
parent 46f4ec6e31
commit deff45cc84
1 changed files with 11 additions and 6 deletions

View File

@ -1,8 +1,13 @@
return {
"folke/which-key.nvim",
config = function()
vim.o.timeout = true
vim.o.timeoutlen = 300
require("which-key").setup { }
end,
"folke/which-key.nvim",
config = function()
vim.o.timeout = true
vim.o.timeoutlen = 600
require("which-key").setup({
window = {
border = "single",
position = "bottom",
},
})
end,
}