From fd5f5a346d93981427583baffc572812c2f45380 Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Tue, 17 Mar 2015 20:14:44 +0900 Subject: [PATCH] Add installation steps for jshint and pyflakes --- .vim/plugins.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vim/plugins.vim b/.vim/plugins.vim index 9f835b7..812a751 100644 --- a/.vim/plugins.vim +++ b/.vim/plugins.vim @@ -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/plasticboy/vim-markdown.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/tpope/vim-abolish.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') 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/scrooloose/syntastic.git', { 'do': 'sudo npm -g install jshint; sudo pip install pyflakes' } endif call plug#end()