From f779aae15c8b593d430b5fc295115125bb3d6048 Mon Sep 17 00:00:00 2001 From: oreodave Date: Sat, 13 Jul 2019 08:23:30 +0100 Subject: Made all maps nonrecursive --- vimrc | 60 ++++++++++++++++++++++++++++++------------------------------ 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/vimrc b/vimrc index 2c8d885..5ab3900 100755 --- a/vimrc +++ b/vimrc @@ -28,7 +28,7 @@ Plugin 'plasticboy/vim-markdown' Plugin 'jceb/vim-orgmode' Plugin 'OmniSharp/omnisharp-vim' - " Plugins + " Plugins Plugin 'godlygeek/tabular' Plugin 'tpope/vim-commentary' Plugin 'tpope/vim-fugitive' @@ -89,46 +89,46 @@ let g:UltiSnipsJumpBackwardTrigger = '' " Keybinds " General keybind -map fed :e ~/.vimrc -map fep :e ~/.vim/ftplugin -map fer :so ~/.vimrc:PluginInstall +nnoremap fed :e ~/.vimrc +nnoremap fep :e ~/.vim/ftplugin +nnoremap fer :so ~/.vimrc:PluginInstall " File Management -map fr :e! -map fs :w -map fq :wq -map fn :enew -map :set hlsearch! hlsearch? +nnoremap fr :e! +nnoremap fs :w +nnoremap fq :wq +nnoremap fn :enew +nnoremap :set hlsearch! hlsearch? " Buffer Management -map bb :Buffers -map bn :bn -map bp :bp -map bd :bd +nnoremap bb :Buffers +nnoremap bn :bn +nnoremap bp :bp +nnoremap bd :bd " Window Management -map ww :Windows +nnoremap ww :Windows " Splits -map wv v -map wh s -map wd q +nnoremap wv v +nnoremap wh s +nnoremap wd q " Resizes -map w :resize -5 -map w :resize +5 -map w 5> -map w 5< +nnoremap w :resize -5 +nnoremap w :resize +5 +nnoremap w 5> +nnoremap w 5< " Movement -map wj -map wk -map wl -map wh +nnoremap wj +nnoremap wk +nnoremap wl +nnoremap wh " Searches -map ss :BLines -map sf :Lines -map ff :Files +nnoremap ss :BLines +nnoremap sf :Lines +nnoremap ff :Files " Nerd Tree Config -map tt :NERDTreeToggle -map tf :NERDTreeFocus +nnoremap tt :NERDTreeToggle +nnoremap tf :NERDTreeFocus -- cgit v1.2.3-13-gbd6f