aboutsummaryrefslogtreecommitdiff
path: root/install.sh
blob: 8dd8d7d0f99e6438e60d2a9c8f813e124ef22f76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/env bash

# Welcome to Vimax!
THIS_DIR=$(dirname $(realpath $0))

pushd .

# Change to this files directory
cd $THIS_DIR

# Fetch dependencies (git submodules)...
git submodule update --init --remote --progress

# compile YouCompleteMe
cd $THIS_DIR/pack/vim/opt/YouCompleteMe
./install.py --clang-completer




popd
..