view update-vendor @ 633:f382ac2f585e

Update default indent for tsx
author nanaya <me@nanaya.pro>
date Tue, 17 Dec 2019 20:10:29 +0900
parents c950f0ef2268
children ced2ee9efd9f
line wrap: on
line source

#!/bin/sh

set -u
set -e


if command -v wget > /dev/null 2>&1; then :
else
  echo wget is required
  exit 1
fi


_get() {
  wget --no-check-certificate -nv "$1"
}


(
  cd "$(dirname "$0")/vendor/vim-autoload"

  rm -f *.vim
  _get "https://raw.githubusercontent.com/tpope/vim-pathogen/master/autoload/pathogen.vim"
)


(
  cd "$(dirname "$0")/vendor/vim-syntax"

  rm -f *.vim
  _get https://hg.nginx.org/nginx/raw-file/tip/contrib/vim/syntax/nginx.vim
  _get https://raw.githubusercontent.com/jelera/vim-javascript-syntax/master/syntax/javascript.vim
  _get https://raw.githubusercontent.com/jwalton512/vim-blade/master/syntax/blade.vim
  _get https://raw.githubusercontent.com/kchmck/vim-coffee-script/master/syntax/coffee.vim
  _get https://raw.githubusercontent.com/leafgarland/typescript-vim/master/syntax/typescript.vim
  _get https://raw.githubusercontent.com/peitalin/vim-jsx-typescript/master/after/syntax/tsx.vim
  _get https://raw.githubusercontent.com/slim-template/vim-slim/master/syntax/slim.vim
  _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/eruby.vim
  _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/json.vim
  _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/less.vim
  _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/ruby.vim
  _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/scss.vim
)