This is VIM configuration for web development. It supports html, css, javascript, php, ruby, python & more.
Original idea and a lot of cool staff was taken from spf13-vim : Steve Francia's Vim Distribution
The easiest way to install configuration is to use automatic installer by simply copying and pasting the following line into a terminal. This will install VIM for Web Developers configuration and backup your existing vim configuration.
*Requires Git 1.7+ and Vim 7.3 or higher.
curl https://raw.github.com/iryston/vim-wd/master/bootstrap.sh -L > vim-wd.sh && sh vim-wd.shor
wget -q https://raw.github.com/iryston/vim-wd/master/bootstrap.sh -O vim-wd.sh && sh vim-wd.shIf you have a bash-compatible shell you can run the script directly:
sh <(curl https://raw.github.com/iryston/vim-wd/master/bootstrap.sh -L)or
sh <(wget -q https://raw.github.com/iryston/vim-wd/master/bootstrap.sh -O-)The simpliest (and safest) way to update is to simply rerun the installer. It will completely and non destructively upgrade to the latest version.
curl https://raw.github.com/iryston/vim-wd/master/bootstrap.sh -L -o - | shor use wget if you prefer
wget -q https://raw.github.com/iryston/vim-wd/master/bootstrap.sh -O- | shAlternatively you can manually perform the following steps. If anything has changed with the structure of the configuration you will need to create the appropriate symlinks.
cd $HOME/.vim-wd/
git pull
vim +PlugUpgrade +PlugClean! +PlugInstall +PlugUpdate +qall