aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorMax Christian Pohle2018-11-12 01:10:33 +0100
committerMax Christian Pohle2018-11-12 01:10:33 +0100
commita693df562838c3f93fcb6055359091aab834c8e2 (patch)
treef31e5dec17312ae4ad88c98e4aa77e2a5692b5a2 /install.sh
parent40eca42048f85d361d01842488e1ee62a1adda23 (diff)
downloadvim-a693df562838c3f93fcb6055359091aab834c8e2.tar.bz2
vim-a693df562838c3f93fcb6055359091aab834c8e2.zip
Found and added formatoptions :)
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index 2eb2a56..bc8a868 100755
--- a/install.sh
+++ b/install.sh
@@ -10,9 +10,10 @@ cd $THIS_DIR
10 10
11# Fetch dependencies (git submodules)... 11# Fetch dependencies (git submodules)...
12awk '/path = (.*)/{PATH=$3;next} /url = /{URL=$3;next} URL{system("git submodule add " URL " " PATH)}' .gitmodules 12awk '/path = (.*)/{PATH=$3;next} /url = /{URL=$3;next} URL{system("git submodule add " URL " " PATH)}' .gitmodules
13git submodule update --init --remote --progress 13git submodule update --init --remote --progress --recursive
14 14
15# compile YouCompleteMe 15# compile YouCompleteMe
16# dependencies: python-certifi
16cd $THIS_DIR/pack/vim/opt/YouCompleteMe 17cd $THIS_DIR/pack/vim/opt/YouCompleteMe
17./install.py --clang-completer 18./install.py --clang-completer
18 19
..