diff options
Diffstat (limited to 'support/vim/install.sh')
-rwxr-xr-x | support/vim/install.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/support/vim/install.sh b/support/vim/install.sh new file mode 100755 index 0000000..9e05384 --- /dev/null +++ b/support/vim/install.sh | |||
@@ -0,0 +1,22 @@ | |||
1 | #!/bin/bash | ||
2 | |||
3 | for type in {ftdetect,ftplugin,syntax}/taf.vim; do | ||
4 | if [[ ! -e $type ]]; then | ||
5 | echo "You don't seem to be in the right directory." | ||
6 | echo "Run this from libbu++/support/vim" | ||
7 | exit | ||
8 | fi | ||
9 | done | ||
10 | |||
11 | if [[ $(whoami) != "root" ]]; then | ||
12 | echo You should probably run this as root... | ||
13 | exit | ||
14 | fi | ||
15 | |||
16 | for type in ftdetect ftplugin syntax; do | ||
17 | for dest in /usr/share/vim/vim*; do | ||
18 | if [[ ! -d $dest/$type ]]; then mkdir -v $dest/$type; fi | ||
19 | if [[ -e $dest/$type/taf.vim ]]; then rm -v $dest/$type/taf.vim; fi | ||
20 | cp -v $type/taf.vim $dest/$type | ||
21 | done | ||
22 | done | ||