nvim: run a formatted and update autocmds to new 0.7 api

This commit is contained in:
mequidis
2022-05-12 08:30:50 +03:00
parent bed9511897
commit dbb104cf21
21 changed files with 402 additions and 333 deletions

View File

@ -2,7 +2,7 @@ local wk = require("which-key")
wk.register({
a = {
name = "Actions",
r = "Reload Config"
r = "Reload Config",
},
d = {
name = "Debug",
@ -16,7 +16,7 @@ wk.register({
p = "List Breakpoints",
q = "Stop",
u = "Toggle UI",
v = "Show Variables"
v = "Show Variables",
},
g = {
name = "Language",
@ -30,7 +30,7 @@ wk.register({
n = "Rename",
q = "Show Diagnostics",
r = "Show References",
t = "Show Type Definition"
t = "Show Type Definition",
},
s = {
name = "Splits & Buffers",
@ -68,6 +68,6 @@ wk.register({
l = "Right Split",
q = "Quit",
s = "Save",
x = "Quit Without Saving"
x = "Quit Without Saving",
}, { prefix = "<leader>" })
wk.setup{}
wk.setup({})