Added NERDTree support to vim.

This commit is contained in:
Scott Wallace 2014-11-11 21:32:48 +00:00
parent 1987dd439a
commit ac2874d6c3

8
.vimrc
View file

@ -9,6 +9,7 @@ Plugin 'tpope/vim-fugitive'
Plugin 'scrooloose/syntastic' Plugin 'scrooloose/syntastic'
Plugin 'bling/vim-airline' Plugin 'bling/vim-airline'
Plugin '29decibel/codeschool-vim-theme' Plugin '29decibel/codeschool-vim-theme'
Plugin 'scrooloose/nerdtree'
" All of your Plugins must be added before the following line " All of your Plugins must be added before the following line
call vundle#end() " required call vundle#end() " required
@ -21,6 +22,7 @@ colorscheme codeschool
" Airline " Airline
set laststatus=2 set laststatus=2
" Tabs and indents
set tabstop=4 set tabstop=4
set shiftwidth=4 set shiftwidth=4
set softtabstop=4 set softtabstop=4
@ -33,4 +35,10 @@ set mouse=a
" Always use vertical diffs " Always use vertical diffs
set diffopt+=vertical set diffopt+=vertical
" Syntax highlighting
syntax on syntax on
" NERDTree
autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
map <C-n> :NERDTreeToggle<CR>