From ad2227208d1fc933a6cce7092a294ef3d5b3d722 Mon Sep 17 00:00:00 2001 From: Jordan Orelli Date: Tue, 23 May 2017 11:50:12 -0500 Subject: [PATCH] more plugins --- .vimrc | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index c4d3fa7..ef17bf8 100644 --- a/.vimrc +++ b/.vimrc @@ -21,6 +21,9 @@ call vundle#begin() Plugin 'Align' Plugin 'tomtom/tlib_vim' " dependency of flashdevelop Plugin 'endel/flashdevelop.vim' + Plugin 'airblade/vim-rooter' + Plugin 'ctrlpvim/ctrlp.vim' + Plugin 'vim-airline/vim-airline' call vundle#end() " required @@ -41,6 +44,7 @@ set showcmd " display incomplete commands set incsearch " incremental searching set ignorecase " case-insensitive searching set smartcase +set laststatus=2 " always show the status line " set scrolloff=3 " scroll when 3 lines from edge " set sidescroll=5 " scroll when 5 chars from the right @@ -116,7 +120,7 @@ if has("autocmd") " causes VIM to enter the directory of the file being edited to simplify " finding related files. - autocmd BufEnter * cd %:p:h + " autocmd BufEnter * cd %:p:h " add proper coloring for my .localrc file au BufNewFile,BufRead .localrc call SetFileTypeSH("bash") @@ -164,3 +168,10 @@ noremap k gk noremap j gj noremap 0 g0 noremap $ g$ + +let g:ctrlp_map = '' +let g:ctrlp_cmd = 'CtrlP' +let g:ctrlp_user_command = ['.git', 'cd %s && git ls-files -co --exclude-standard'] + +" open up directories with a single click instead of needing to double-click +let g:NERDTreeMouseMode=2