From fc5ed3fe784b2c19755441d5e86908f85e0d4074 Mon Sep 17 00:00:00 2001 From: Dmytro Meleshko Date: Fri, 11 Oct 2019 15:45:40 +0300 Subject: [PATCH] [nvim] add mappings for improving consistency --- nvim/lib/editing.vim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nvim/lib/editing.vim b/nvim/lib/editing.vim index 83d758c..bd85241 100644 --- a/nvim/lib/editing.vim +++ b/nvim/lib/editing.vim @@ -82,6 +82,11 @@ set foldmethod=marker " noremap cx "+d " }}} + " make the default Vim mappings more consistent + " https://www.reddit.com/r/vim/comments/dgbr9l/mappings_i_would_change_for_more_consistent_vim/ + nnoremap U + nnoremap Y y$ + " }}}