diff --git a/dotfiles/vim/vimrc b/dotfiles/vim/vimrc index 6072e56..3b0e190 100644 --- a/dotfiles/vim/vimrc +++ b/dotfiles/vim/vimrc @@ -8,7 +8,7 @@ set fenc=utf-8 set termencoding=utf-8 " }}} " LEADER SHORTCUTS {{{ -let mapleader="," +let mapleader=" " " jk is escape inoremap jk @@ -151,7 +151,7 @@ set path+=** " Find files in sub-folders too set incsearch " search as characters are entered set hlsearch " highlight matches " turn off search hightlight after search -nnoremap :nohlsearch +nnoremap , :nohlsearch " }}} " FOLDING {{{ set foldenable " enable folding @@ -159,7 +159,7 @@ set foldlevelstart=10 " open most folds by default (0 to 99) set foldnestmax=10 " guard against too many nested folds set foldmethod=syntax " fold based on filetype " space opens and closes folds -nnoremap za +nnoremap , za " }}} " MOVEMENT {{{ " move vertically by visual line (don't jump wrapped lines)