1
0
Fork 0
chezmoi/dot_config/nvim/lua/configs/packages/which-key.lua

11 lines
245 B
Lua

return {
'folke/which-key.nvim',
config = function()
local wk = require('which-key')
wk.register({
['<Space>f'] = { name = "+file"},
['<Space>g'] = { name = "+git"},
['<Space>l'] = { name = "+LSP"},
})
end,
}