Skip to content

Instantly share code, notes, and snippets.

@satomixx
Created March 28, 2015 05:16
Show Gist options
  • Save satomixx/e2fea74955a0b27ccd62 to your computer and use it in GitHub Desktop.
Save satomixx/e2fea74955a0b27ccd62 to your computer and use it in GitHub Desktop.
[NeoBundle] My First Neobundle ref: http://qiita.com/tsumekoara/items/706c4f12a55878c29e45
let g:syntastic_javascript_checker = "jshint"
let g:syntastic_check_on_open = 0 "never check at opening file
let g:syntastic_check_on_save = 1 "check at saving file
$ mkdir -p ~/.vim/bundle
$ git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim
"---------------------------
" Neobundle Settings
"---------------------------
" set directory path to manage bundle
set runtimepath+=~/.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.
"-------------------------
$ source ~/.vimrc
" HERE!! WRITE PLUGINGS!!
" NERDTree
NeoBundle 'scrooloose/nerdtree
call neobundle#end()
NeoBundle 'Townk/vim-autoclose'
NeoBundle 'mattn/emmet-vim'
NeoBundle 'thinca/vim-quickrun'
NeoBundle 'grep.vim'
NeoBundle 'scrooloose/syntastic'
$ source ~/.vimrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment