Mercurial > ec-dotfiles
annotate update-vendor @ 683:71254a6ddb4c
[bash] Also detect (new?) tmux term
| author | nanaya <me@nanaya.pro> | 
|---|---|
| date | Tue, 09 Aug 2022 04:16:52 +0900 | 
| parents | 2febdacae5b4 | 
| children | 17cacf387f7c | 
| rev | line source | 
|---|---|
| 
508
 
bbcffc594d1e
Vendor what should be vendored and add some more.
 
edogawaconan <me@myconan.net> 
parents:  
diff
changeset
 | 
1 #!/bin/sh | 
| 
 
bbcffc594d1e
Vendor what should be vendored and add some more.
 
edogawaconan <me@myconan.net> 
parents:  
diff
changeset
 | 
2 | 
| 572 | 3 set -u | 
| 4 set -e | |
| 5 | |
| 6 | |
| 
578
 
184635b813e1
Whoops, has been using wrong syntax
 
nanaya <me@myconan.net> 
parents: 
572 
diff
changeset
 | 
7 if command -v wget > /dev/null 2>&1; then : | 
| 
 
184635b813e1
Whoops, has been using wrong syntax
 
nanaya <me@myconan.net> 
parents: 
572 
diff
changeset
 | 
8 else | 
| 
508
 
bbcffc594d1e
Vendor what should be vendored and add some more.
 
edogawaconan <me@myconan.net> 
parents:  
diff
changeset
 | 
9 echo wget is required | 
| 
 
bbcffc594d1e
Vendor what should be vendored and add some more.
 
edogawaconan <me@myconan.net> 
parents:  
diff
changeset
 | 
10 exit 1 | 
| 
 
bbcffc594d1e
Vendor what should be vendored and add some more.
 
edogawaconan <me@myconan.net> 
parents:  
diff
changeset
 | 
11 fi | 
| 
 
bbcffc594d1e
Vendor what should be vendored and add some more.
 
edogawaconan <me@myconan.net> 
parents:  
diff
changeset
 | 
12 | 
| 572 | 13 | 
| 
508
 
bbcffc594d1e
Vendor what should be vendored and add some more.
 
edogawaconan <me@myconan.net> 
parents:  
diff
changeset
 | 
14 _get() { | 
| 660 | 15 wget -nv "$1" | 
| 
508
 
bbcffc594d1e
Vendor what should be vendored and add some more.
 
edogawaconan <me@myconan.net> 
parents:  
diff
changeset
 | 
16 } | 
| 
 
bbcffc594d1e
Vendor what should be vendored and add some more.
 
edogawaconan <me@myconan.net> 
parents:  
diff
changeset
 | 
17 | 
| 572 | 18 | 
| 19 ( | |
| 20 cd "$(dirname "$0")/vendor/vim-autoload" | |
| 21 | |
| 22 rm -f *.vim | |
| 23 _get "https://raw.githubusercontent.com/tpope/vim-pathogen/master/autoload/pathogen.vim" | |
| 24 ) | |
| 25 | |
| 
508
 
bbcffc594d1e
Vendor what should be vendored and add some more.
 
edogawaconan <me@myconan.net> 
parents:  
diff
changeset
 | 
26 | 
| 572 | 27 ( | 
| 28 cd "$(dirname "$0")/vendor/vim-syntax" | |
| 29 | |
| 30 rm -f *.vim | |
| 623 | 31 _get https://hg.nginx.org/nginx/raw-file/tip/contrib/vim/syntax/nginx.vim | 
| 
632
 
c950f0ef2268
Apparently better use githubusercontent?
 
nanaya <me@nanaya.pro> 
parents: 
631 
diff
changeset
 | 
32 _get https://raw.githubusercontent.com/jwalton512/vim-blade/master/syntax/blade.vim | 
| 
 
c950f0ef2268
Apparently better use githubusercontent?
 
nanaya <me@nanaya.pro> 
parents: 
631 
diff
changeset
 | 
33 _get https://raw.githubusercontent.com/kchmck/vim-coffee-script/master/syntax/coffee.vim | 
| 
 
c950f0ef2268
Apparently better use githubusercontent?
 
nanaya <me@nanaya.pro> 
parents: 
631 
diff
changeset
 | 
34 _get https://raw.githubusercontent.com/slim-template/vim-slim/master/syntax/slim.vim | 
| 
634
 
ced2ee9efd9f
Update various syntaxes to the ones in vim repo
 
nanaya <me@nanaya.pro> 
parents: 
632 
diff
changeset
 | 
35 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/css.vim | 
| 
632
 
c950f0ef2268
Apparently better use githubusercontent?
 
nanaya <me@nanaya.pro> 
parents: 
631 
diff
changeset
 | 
36 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/eruby.vim | 
| 
634
 
ced2ee9efd9f
Update various syntaxes to the ones in vim repo
 
nanaya <me@nanaya.pro> 
parents: 
632 
diff
changeset
 | 
37 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/javascript.vim | 
| 
632
 
c950f0ef2268
Apparently better use githubusercontent?
 
nanaya <me@nanaya.pro> 
parents: 
631 
diff
changeset
 | 
38 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/json.vim | 
| 
 
c950f0ef2268
Apparently better use githubusercontent?
 
nanaya <me@nanaya.pro> 
parents: 
631 
diff
changeset
 | 
39 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/less.vim | 
| 
 
c950f0ef2268
Apparently better use githubusercontent?
 
nanaya <me@nanaya.pro> 
parents: 
631 
diff
changeset
 | 
40 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/ruby.vim | 
| 
 
c950f0ef2268
Apparently better use githubusercontent?
 
nanaya <me@nanaya.pro> 
parents: 
631 
diff
changeset
 | 
41 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/scss.vim | 
| 672 | 42 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/typescript.vim | 
| 43 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/typescriptcommon.vim | |
| 44 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/typescriptreact.vim | |
| 572 | 45 ) | 
| 
662
 
f280738a90a6
[vim] vendor theme and add some more
 
nanaya <me@nanaya.pro> 
parents: 
660 
diff
changeset
 | 
46 | 
| 
 
f280738a90a6
[vim] vendor theme and add some more
 
nanaya <me@nanaya.pro> 
parents: 
660 
diff
changeset
 | 
47 ( | 
| 
 
f280738a90a6
[vim] vendor theme and add some more
 
nanaya <me@nanaya.pro> 
parents: 
660 
diff
changeset
 | 
48 cd "$(dirname "$0")/vendor/vim-colors" | 
| 
 
f280738a90a6
[vim] vendor theme and add some more
 
nanaya <me@nanaya.pro> 
parents: 
660 
diff
changeset
 | 
49 | 
| 
 
f280738a90a6
[vim] vendor theme and add some more
 
nanaya <me@nanaya.pro> 
parents: 
660 
diff
changeset
 | 
50 rm -f *.vim | 
| 
 
f280738a90a6
[vim] vendor theme and add some more
 
nanaya <me@nanaya.pro> 
parents: 
660 
diff
changeset
 | 
51 _get https://raw.githubusercontent.com/NLKNguyen/papercolor-theme/master/colors/PaperColor.vim | 
| 
 
f280738a90a6
[vim] vendor theme and add some more
 
nanaya <me@nanaya.pro> 
parents: 
660 
diff
changeset
 | 
52 _get https://raw.githubusercontent.com/srcery-colors/srcery-vim/master/colors/srcery.vim | 
| 
 
f280738a90a6
[vim] vendor theme and add some more
 
nanaya <me@nanaya.pro> 
parents: 
660 
diff
changeset
 | 
53 _get https://raw.githubusercontent.com/tomasiser/vim-code-dark/master/colors/codedark.vim | 
| 
 
f280738a90a6
[vim] vendor theme and add some more
 
nanaya <me@nanaya.pro> 
parents: 
660 
diff
changeset
 | 
54 ) | 
