fix: prevent <C-h> remapping
This commit is contained in:
parent
32433cf27f
commit
9b746f3f95
2 changed files with 7 additions and 2 deletions
|
@ -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 = " "
|
||||||
|
|
|
@ -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
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue