mirror of
https://github.com/tomru/vim.git
synced 2026-03-03 14:37:20 +01:00
11 lines
252 B
Lua
11 lines
252 B
Lua
local wk = require 'which-key'
|
|
wk.setup {}
|
|
wk.register({
|
|
f = { name = '[F]ile' },
|
|
s = { name = '[S]earch' },
|
|
t = { name = '[T]est' },
|
|
w = { name = '[W]orkspace' },
|
|
g = { name = '[G]it' },
|
|
l = { name = '[L]SP' },
|
|
}, { prefix = '<leader>' })
|