commit 4c313c9b5542c1c4e38e128110c5a5fc8e416f64
parent 42f4e8c0642cad9bb4d071993ead7812ce15aa75
Author: Ed van Bruggen <edvb54@gmail.com>
Date: Sat, 29 Aug 2015 20:56:07 -0700
Vim: Add > and < mappings to nvimrc
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/nvimrc b/nvimrc
@@ -65,6 +65,10 @@ nnoremap ZA :wqall<CR>
" C changes until end of line and D deletes until end of line, so why not Y?
noremap Y y$
+" better indenting for visual mode
+vnoremap > >gv
+vnoremap < <gv
+
" easily change buffers
nnoremap <C-H> :bprev<CR>
nnoremap <C-L> :bnext<CR>