nvim: keymappings: Drop highlight search mapping

<C-l> now clears search highlight and update diffs and is mapped by
default.

See
https://github.com/neovim/neovim/issues/14090#issuecomment-901882455.
This commit is contained in:
Sanchayan Maity 2021-10-01 12:28:09 +05:30
parent a668139491
commit 31780f0c25
1 changed files with 0 additions and 2 deletions

View File

@ -90,8 +90,6 @@ remap('n', '<Space>9', '9<C-w>w', opts)
remap('n', '<C-\\>', ':vsp <CR>:<C-u>tag <C-r><C-w><CR>', opts)
remap('n', '<A-]>' , ':sp <CR>:<C-u>tag <C-r><C-w><CR>' , opts)
remap('n', '<Leader>n', ':nohlsearch<CR>', opts)
-- Move across wrapped lines like regular lines
-- Go to the first non-blank character of a line
remap('n', '0', '^', opts)