nvim keymap Space and Enter for add blank line before and after cursorline

This commit is contained in:
TheK4n 2023-01-24 20:14:55 +03:00
parent c0b8785aa1
commit 97feb47488

View File

@ -23,6 +23,8 @@ map('n', '<Leader>/',
map('i', 'jk', '<ESC>', opts)
map('i', 'ол', '<ESC>', opts)
map('n', '<Enter>', 'o<ESC>', opts)
map('n', '<Space>', 'O<ESC>', opts)
-- x to blackhole
map('n', 'x', '"_x', opts)