Add vim style mapping to get notmal mode in term:// buffer

This commit is contained in:
Kenneth Benzie 2024-03-17 22:44:10 +00:00
parent 50cc8ae3ab
commit 83403a8416

View File

@ -43,3 +43,6 @@ vim.keymap.set('n', 'Q', '<nop>', {noremap = true})
-- Undo neovim's default mapping of Y to y$
vim.cmd('unmap Y')
-- Make nvim :terminal more like vim :terminal
vim.keymap.set('t', '<C-w>N', '<C-\\><C-n>', { remap = true })