1
0
Fork 0

remove keybinds to force correct vim usage

This commit is contained in:
Luca Bilke 2022-08-16 10:59:29 +02:00
parent 8f433b578e
commit 17e08fc551
1 changed files with 0 additions and 8 deletions

View File

@ -184,10 +184,6 @@ lvim.keys.insert_mode = {
lvim.keys.normal_mode = {
["<c-s>"] = ":w<CR>",
["<c-q>"] = ":lua Custom_Close()<CR>",
["<C-l>"] = "W",
["<C-h>"] = "gE",
["<C-k>"] = "<C-U>",
["<C-j>"] = "<C-D>",
}
lvim.keys.term_mode = {
}
@ -196,16 +192,12 @@ lvim.keys.visual_mode = {
["<c-q>"] = "<ESC>:lua Custom_Close()<CR>",
["<"] = "<gv",
[">"] = ">gv",
["<C-k>"] = "<C-U>",
["<C-j>"] = "<C-D>",
}
lvim.keys.visual_block_mode = {
["<c-s>"] = "<ESC>:w<CR>",
["<c-q>"] = "<ESC>:lua Custom_Close()<CR>",
["K"] = ":move '<-2<CR>gv-gv",
["J"] = ":move '>+1<CR>gv-gv",
["<S-Up>"] = "<C-U>",
["<S-Down>"] = "<C-D>",
}
lvim.builtin.which_key.mappings = {