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 .