blob: 9b5c9b3999d022c4b809f7cd9c8bf5b882f26a8c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
# Pull latest versions of vendored files.
set -o errexit -o nounset -o pipefail
pull() {
curl -s "https://raw.githubusercontent.com/$2" -o "$1"
echo "$1"
}
pull {.config/nvim,morhetz/gruvbox/master}/colors/gruvbox.vim
pull {.config/nvim,tpope/vim-pathogen/master}/autoload/pathogen.vim
|