fix: prevent <C-h> remapping

main
mandlm 2022-02-21 17:49:56 +01:00
parent 32433cf27f
commit 9b746f3f95
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
2 changed files with 7 additions and 2 deletions

View File

@ -7,7 +7,7 @@ vim.cmd([[
]]) ]])
local function nnoremap(key, command) local function nnoremap(key, command)
vim.api.nvim_set_keymap("n",key,command, { noremap = true, silent = true }) vim.api.nvim_set_keymap("n",key,command, { noremap = true })
end end
vim.g.mapleader = " " vim.g.mapleader = " "

View File

@ -49,4 +49,9 @@ vim.cmd([[
]]) ]])
-- coq.nvim -- coq.nvim
vim.g.coq_settings = { auto_start = "shut-up" } vim.g.coq_settings = {
auto_start = "shut-up",
keymap = {
jump_to_mark = "", -- prevent <C-h> remapping
},
}