Skip to content

Commit

Permalink
Remove css/js bundles, use npm for syntastic instead
Browse files Browse the repository at this point in the history
  • Loading branch information
MitchellMcKenna committed Aug 26, 2013
1 parent a6d9506 commit 85ccc5e
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 13 deletions.
6 changes: 0 additions & 6 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,6 @@
[submodule ".vim/bundle/phpcs"]
path = .vim/bundle/phpcs
url = https://github.com/vim-scripts/phpcs.vim.git
[submodule ".vim/bundle/jshint.vim"]
path = .vim/bundle/jshint.vim
url = https://github.com/rmanalan/jshint.vim.git
[submodule ".vim/bundle/csslint.vim"]
path = .vim/bundle/csslint.vim
url = https://github.com/vim-scripts/csslint.vim.git
[submodule ".vim/bundle/ctrlp.vim"]
path = .vim/bundle/ctrlp.vim
url = https://github.com/kien/ctrlp.vim
Expand Down
1 change: 0 additions & 1 deletion .vim/bundle/csslint.vim
Submodule csslint.vim deleted from f55170
1 change: 0 additions & 1 deletion .vim/bundle/jshint.vim
Submodule jshint.vim deleted from da21f0
2 changes: 1 addition & 1 deletion .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

" Syntastical - PHP Code_Sniffer {
let g:phpcs_std_list="PSR2"
let g:syntastic_check_on_open=0
let g:syntastic_check_on_open=1
"let g:syntastic_enable_highlighting = 0
"let g:syntastic_quiet_warnings=1
let g:syntastic_error_symbol=''
Expand Down
7 changes: 3 additions & 4 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,6 @@ You can add vim plugins as git submodules for easy updates:
git submodule add https://github.com/altercation/vim-colors-solarized.git .vim/bundle/vim-colors-solarized
git submodule add https://github.com/scrooloose/syntastic.git .vim/bundle/syntastic
git submodule add https://github.com/vim-scripts/phpcs.vim.git .vim/bundle/phpcs
git submodule add https://github.com/rmanalan/jshint.vim.git .vim/bundle/jshint.vim
git submodule add https://github.com/vim-scripts/csslint.vim.git .vim/bundle/csslint.vim
git submodule add https://github.com/kien/ctrlp.vim .vim/bundle/ctrlp.vim
git submodule add https://github.com/bling/vim-airline.git .vim/bundle/vim-airline
git submodule add https://github.com/airblade/vim-gitgutter .vim/bundle/vim-gitgutter
Expand Down Expand Up @@ -99,12 +97,13 @@ Entering Insert Mode Causes Delay

This can be caused by vim-airline in older versions on Vim 7.3. Either update to a newer version, disable airline, or use Powerline instead.

Setup CSS Linting
Setup JS/CSS Linting
-----------------

Install NodeJS if you don't have it already then run:

sudo npm install -g csslint
npm install -g csslint
npm install -g jshint

Typing 'vi' Not Opening Vim
---------------------------
Expand Down

0 comments on commit 85ccc5e

Please sign in to comment.