From 2ed60ab66594b9c6f14fd603ed093f37455f1057 Mon Sep 17 00:00:00 2001 From: Denis Payase Date: Wed, 18 Dec 2013 14:38:30 +0400 Subject: [PATCH] Autoinstall jshint for syntastic --- .vimrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.vimrc b/.vimrc index 6a83bd8..df2a9d2 100644 --- a/.vimrc +++ b/.vimrc @@ -40,6 +40,8 @@ Bundle 'Raimondi/delimitMate' " I just enable it, with default config, " many false positive but still usefull Bundle 'scrooloose/syntastic' +" Install jshint for Syntastic +silent !type jshint &>/dev/null || { cd ~; echo 'Installing jshint'; npm install jshint; cd -; } " Great file system explorer, it appears when you open dir in vim " Allow modification of dir, and may other things