Mercurial > ec-dotfiles
view update-vim-syntax @ 541:5cdef8f4360f
Cleanup file type setters.
author | edogawaconan <me@myconan.net> |
---|---|
date | Tue, 06 Jan 2015 03:26:39 +0900 |
parents | 50fd59a959ea |
children |
line wrap: on
line source
#!/bin/sh if [ ! command -v wget > /dev/null 2>&1 ]; then echo wget is required exit 1 fi _get() { wget --no-check-certificate -nv "$1" } cd "$(dirname "$0")/vendor/vim-syntax" rm -f *.vim _get https://vim.googlecode.com/hg/runtime/syntax/ruby.vim _get https://vim.googlecode.com/hg/runtime/syntax/eruby.vim _get https://vim.googlecode.com/hg/runtime/syntax/scss.vim _get https://github.com/kchmck/vim-coffee-script/raw/master/syntax/coffee.vim _get https://github.com/slim-template/vim-slim/raw/master/syntax/slim.vim _get https://github.com/elzr/vim-json/raw/master/syntax/json.vim _get https://raw.githubusercontent.com/xsbeats/vim-blade/master/syntax/blade.vim _get https://raw.githubusercontent.com/groenewege/vim-less/master/syntax/less.vim