aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/install.sh b/install.sh
deleted file mode 100755
index bc8a868..0000000
--- a/install.sh
+++ /dev/null
@@ -1,23 +0,0 @@
1#!/bin/env bash
2
3# Welcome to Vimax!
4THIS_DIR=$(dirname $(realpath $0))
5
6pushd .
7
8# Change to this files directory
9cd $THIS_DIR
10
11# Fetch dependencies (git submodules)...
12awk '/path = (.*)/{PATH=$3;next} /url = /{URL=$3;next} URL{system("git submodule add " URL " " PATH)}' .gitmodules
13git submodule update --init --remote --progress --recursive
14
15# compile YouCompleteMe
16# dependencies: python-certifi
17cd $THIS_DIR/pack/vim/opt/YouCompleteMe
18./install.py --clang-completer
19
20
21
22
23popd
..