Myrkvim/lua/plugins/which-key.lua

17 lines
370 B
Lua

-- https://github.com/folke/which-key.nvim
return {
"folke/which-key.nvim",
config = function()
vim.o.timeout = true
vim.o.timeoutlen = 300
require("which-key").setup({
key_labels = {
["<space>"] = "SPC",
["<cr>"] = "RET",
["<tab>"] = "TAB",
}
})
end
}