well english is not my thing

This commit is contained in:
Thomas Ruoff
2023-03-07 22:43:23 +01:00
parent c10c2aebc0
commit 8d9b4b2d6d
2 changed files with 10 additions and 12 deletions

10
after/plugin/whichkey.lua Normal file
View File

@@ -0,0 +1,10 @@
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>' })

View File

@@ -1,12 +0,0 @@
local wk = require 'which-key'
wk.setup {}
wk.register {
['<leader>'] = {
f = { name = '[F]ile' },
s = { name = '[S]earch' },
t = { name = '[T]est' },
w = { name = '[W]orkspace' },
g = { name = '[G]it' },
l = { name = '[L]SP' },
},
}