1
0
Fork 0

change lvim buffer keybinds for clarity

This commit is contained in:
Luca Bilke 2022-08-03 17:37:08 +02:00
parent 5d6bbc2da4
commit bc72905820

View file

@ -140,8 +140,10 @@ lvim.keys.insert_mode = {
lvim.keys.normal_mode = {
["<c-s>"] = ":w<CR>",
["<c-q>"] = ":lua Custom_Close()<CR>",
["<C-Right>"] = ":bn<CR>",
["<C-Left>"] = ":bp<CR>",
["<C-Right>"] = "W",
["<C-Left>"] = "gE",
["<C-.>"] = ":bn<CR>",
["<C-,>"] = ":bp<CR>",
["<S-Up>"] = "<C-U>",
["<S-Down>"] = "<C-D>"
}