summaryrefslogtreecommitdiff
path: root/support/vim/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'support/vim/install.sh')
-rwxr-xr-xsupport/vim/install.sh22
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..2a77b1b
--- /dev/null
+++ b/support/vim/install.sh
@@ -0,0 +1,22 @@
1#!/bin/bash
2
3for type in {ftdetect,ftplugin,syntax}/stage.vim; do
4 if [[ ! -e $type ]]; then
5 echo "You don't seem to be in the right directory."
6 echo "Run this from stage/support/vim"
7 exit
8 fi
9done
10
11if [[ $(whoami) != "root" ]]; then
12 echo You should probably run this as root...
13 exit
14fi
15
16for 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/stage.vim ]]; then rm -v $dest/$type/stage.vim; fi
20 cp -v $type/stage.vim $dest/$type
21 done
22done