aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Christian Pohle2018-05-14 22:23:01 +0200
committerMax Christian Pohle2018-05-14 22:23:01 +0200
commit2d6337beaba0c6bb4e8ef818fedca564fc17064e (patch)
tree4a39273da89a88b85fe98255aa2218ee99627587
parentdf5e16fc3baa09ef63d9ee9c0e07861f23d5149d (diff)
downloadvim-2d6337beaba0c6bb4e8ef818fedca564fc17064e.tar.bz2
vim-2d6337beaba0c6bb4e8ef818fedca564fc17064e.zip
Commented installer script and fixed local installer
-rw-r--r--install.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index 1ee5cdf..cfdf3bd 100644
--- a/install.sh
+++ b/install.sh
@@ -1,5 +1,9 @@
1# Welcome to Vimax! 1# Welcome to Vimax!
2# 2#
3# This script allows a local installation to some random path and starts
4# the vim-EDITOR after installation is finished. That way the configuration
5# can easily be tested.
6#
3# You have just executed this script 7# You have just executed this script
4 8
5if [[ ! $EDITOR =~ ^n?g?vim?$ ]]; then 9if [[ ! $EDITOR =~ ^n?g?vim?$ ]]; then
@@ -28,4 +32,4 @@ $EDITOR -u vimrc-full -N \
28 +'PlugInstall --sync' \ 32 +'PlugInstall --sync' \
29 +qall 33 +qall
30 34
31$EDITOR $0 35$EDITOR -u vimrc-full -N $0
..