NeoBundle is ...
read this.
Install
$ mkdir-p~/.vim/bundle
$ git clone https://github.com/Shougo/neobundle.vim~/.vim/bundle/neobundle.vim
Setup
write configuration at ~/.vimrc for NeoBundle
"---------------------------" Neobundle Settings"---------------------------" set directory path to manage bundlesetruntimepath+=~/.vim/bundle/neobundle.vim/" Required:call neobundle#begin(expand('~/.vim/bundle/'))" manage neobundle by neobundle
NeoBundleFetch 'Shougo/neobundle.vim'" HERE!! WRITE PLUGINGS!!call neobundle#end()" Required:filetype plugin indent on" uninstallede plungins checker
NeoBundleCheck
"-------------------------" End: Neobundle Settings."-------------------------
reflect
$ source ~/.vimrc
Add plugins
" HERE!! WRITE PLUGINGS!!" NERDTree
NeoBundle 'scrooloose/nerdtree
call neobundle#end()
$ vim
type y, start installing
some other plugins
NeoBundle 'Townk/vim-autoclose'
NeoBundle 'mattn/emmet-vim'
NeoBundle 'thinca/vim-quickrun'
NeoBundle 'grep.vim'
NeoBundle 'scrooloose/syntastic'
$ vim
~/.vimrc
letg:syntastic_javascript_checker ="jshint"letg:syntastic_check_on_open =0"never check at opening fileletg:syntastic_check_on_save =1"check at saving file
$ source ~/.vimrc