From 2addfbf19212e1c697a711d6c531b98954099ec5 Mon Sep 17 00:00:00 2001 From: Meutel Date: Thu, 5 May 2016 15:22:49 +0200 Subject: [PATCH] vim: shortcut navigate buffers --- _vimrc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/_vimrc b/_vimrc index c2e87e7..0f8842f 100644 --- a/_vimrc +++ b/_vimrc @@ -92,11 +92,16 @@ set shiftwidth=2 " {{{ Shortcuts " clear search -nnoremap l :nohl +nnoremap c :nohl " NERdTree nnoremap o :NERDTree " save nnoremap w :w +" quit +nnoremap q :q +" navigate buffers +nnoremap h :bn +nnoremap l :bp " copy/paste system clipboard vmap y "+y vmap d "+d