From 22a2742271a04e90497e01a59a04450f832efec5 Mon Sep 17 00:00:00 2001 From: odave Date: Sun, 5 Apr 2020 02:25:02 +0100 Subject: ~removed quite a few plugins, moving to normal vim Normal vim is enough, I want fast speeds and ease of use. Vim is not something I use for main editing - it's just for quick edits and super speed. --- vimrc | 31 +++++++++++-------------------- 1 file changed, 11 insertions(+), 20 deletions(-) diff --git a/vimrc b/vimrc index 191ad0a..86b9309 100644 --- a/vimrc +++ b/vimrc @@ -2,22 +2,16 @@ filetype off "" Plugins set rtp+=~/.vim/bundle/Vundle.vim -set rtp+=~/.fzf call vundle#begin() "" Core Plugin 'gmarik/Vundle.vim' -Plugin 'junegunn/fzf.vim' -Plugin 'ctrlpvim/ctrlp.vim' Plugin 'tpope/vim-dispatch' Plugin 'SirVer/ultisnips' Plugin 'honza/vim-snippets' -Plugin 'w0rp/ale' "" UI Plugin 'scrooloose/nerdtree' -Plugin 'crusoexia/vim-monokai' -Plugin 'christoomey/vim-tmux-navigator' "" Plugins Plugin 'godlygeek/tabular' @@ -51,7 +45,7 @@ let mapleader = ' ' "" Theming -colorscheme monokai +colorscheme elflord "" Dir Config @@ -69,42 +63,39 @@ nnoremap gs :G nnoremap : "" File Management -nnoremap ff :Files . +nnoremap ff :e nnoremap fs :w nnoremap fq :wq nnoremap fn :enew nnoremap :set hlsearch! hlsearch? "" Buffer Management -nnoremap bb :Buffers +nnoremap bb :b nnoremap bn :bn nnoremap bp :bp nnoremap bd :bd - "" Window Management -nnoremap ww :Windows - "" Splits + "" Search +nnoremap ss / + + "" Window Splits nnoremap wv v nnoremap ws s nnoremap wd q - "" Resizes + + "" Window Resizes nnoremap wj :resize -5 nnoremap wk :resize +5 nnoremap wl 5> nnoremap wh 5< - "" Movement + + "" Window Movement nnoremap j nnoremap k nnoremap l nnoremap h - "" Searches -nnoremap ss :BLines -nnoremap sr :Rg -nnoremap st :BTags -nnoremap fF :Files "" Projects -nnoremap pf :Files nnoremap ot :NERDTreeToggle nnoremap pg :!ctags-exuberant -R --exclude=Makefile . -- cgit v1.2.3-13-gbd6f