Add installation steps for jshint and pyflakes

This commit is contained in:
Alex Yatskov 2015-03-17 20:14:44 +09:00
parent f0945e99ff
commit fd5f5a346d

View File

@ -17,7 +17,6 @@ Plug 'https://github.com/ntpeters/vim-better-whitespace.git'
Plug 'https://github.com/pangloss/vim-javascript.git' Plug 'https://github.com/pangloss/vim-javascript.git'
Plug 'https://github.com/plasticboy/vim-markdown.git' Plug 'https://github.com/plasticboy/vim-markdown.git'
Plug 'https://github.com/scrooloose/nerdtree.git' Plug 'https://github.com/scrooloose/nerdtree.git'
Plug 'https://github.com/scrooloose/syntastic.git'
Plug 'https://github.com/tomasr/molokai.git' Plug 'https://github.com/tomasr/molokai.git'
Plug 'https://github.com/tpope/vim-abolish.git' Plug 'https://github.com/tpope/vim-abolish.git'
Plug 'https://github.com/tpope/vim-commentary.git' Plug 'https://github.com/tpope/vim-commentary.git'
@ -32,6 +31,7 @@ Plug 'https://github.com/vim-latex/vim-latex.git'
if has('unix') if has('unix')
Plug 'https://github.com/Valloric/YouCompleteMe.git', { 'do': './install.sh' } Plug 'https://github.com/Valloric/YouCompleteMe.git', { 'do': './install.sh' }
Plug 'https://github.com/marijnh/tern_for_vim', { 'do': 'npm install' } Plug 'https://github.com/marijnh/tern_for_vim', { 'do': 'npm install' }
Plug 'https://github.com/scrooloose/syntastic.git', { 'do': 'sudo npm -g install jshint; sudo pip install pyflakes' }
endif endif
call plug#end() call plug#end()