summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Gayot <duskcoder@gmail.com>2014-12-22 21:36:43 +0100
committerOlivier Gayot <duskcoder@gmail.com>2014-12-22 21:36:43 +0100
commit02d5e9e871bf7501989ad4e8956da31fb9c8f302 (patch)
tree2651ccf9d4c15446f200c0fd9bb7aff86efa3b95
parent48dc1530489a46252dac135a1cff9874ed3c1c27 (diff)
vimperator: get vimperatorrc from duskCoder/VimperatorrcBuilder
duskCoder/VimperatorrcBuilder has been added as a submodule. The install.sh script will first clone the repositoy and then use python to generate the .vimperatorrc file. Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
-rwxr-xr-xinstall.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/install.sh b/install.sh
index 6f79578..1b9aa4b 100755
--- a/install.sh
+++ b/install.sh
@@ -7,6 +7,11 @@ fi
case "$1" in
user)
+ git clone https://github.com/duskCoder/VimperatorrcBuilder.git tmp &&
+ (
+ python tmp/example.py > user/.vimperatorrc
+ )
+ rm -rf tmp
echo "installing the user configuration..."
find user -maxdepth 1 -mindepth 1 -exec cp -ivr {} ~ \;
;;