mirror of https://github.com/sgoudham/dotfiles.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
550 B
Lua
26 lines
550 B
Lua
2 years ago
|
return {
|
||
|
{
|
||
|
"folke/which-key.nvim",
|
||
|
config = function()
|
||
|
local wk = require("which-key")
|
||
|
wk.setup({
|
||
|
window = {
|
||
|
border = "rounded",
|
||
|
},
|
||
|
})
|
||
|
|
||
|
wk.register({
|
||
|
f = { name = "Find" },
|
||
|
g = { name = "Git" },
|
||
|
-- j = { name = "Jump" },
|
||
|
l = { name = "LSP" },
|
||
|
-- o = { name = "Open" },
|
||
|
t = { name = "Tasks" },
|
||
|
d = { name = "Debug" },
|
||
|
b = { name = "Breakpoint" },
|
||
|
z = { name = "Zen" },
|
||
|
}, { prefix = "<leader>" })
|
||
|
end,
|
||
|
},
|
||
|
}
|