mirror of
https://github.com/tomru/vim.git
synced 2026-03-03 14:37:20 +01:00
10 lines
217 B
Lua
10 lines
217 B
Lua
local wk = require 'which-key'
|
|
wk.setup {}
|
|
wk.register({
|
|
f = { name = 'find' },
|
|
t = { name = 'test' },
|
|
h = { name = 'harpoon' },
|
|
w = { name = 'workspace' },
|
|
g = { name = 'git' },
|
|
}, { prefix = '<leader>' })
|