diff options
Diffstat (limited to 'root-install.sh')
-rwxr-xr-x | root-install.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/root-install.sh b/root-install.sh new file mode 100755 index 0000000..c6811be --- /dev/null +++ b/root-install.sh @@ -0,0 +1,9 @@ +#!/bin/sh +# +# Install the bepo.vim plugin for root, without actually cloning the repository +# again but just by copying the plugin. + +DESTDIR=/root/.vim/pack/microjoe/start/bepo.vim/ + +sudo mkdir -vp "$DESTDIR" +sudo cp -vr plugin "$DESTDIR" |