aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorMax Christian Pohle2022-12-18 20:29:55 +0100
committerMax Christian Pohle2022-12-18 20:56:01 +0100
commit07797b39851da045aa1bfd0289de0858a1377c48 (patch)
tree4ca5d2b26d2ca9d01fc052fce5a26f88364a53d0 /install.sh
parent1086af63639d2a108f39ae077e0e201dddf4f523 (diff)
downloadvim-07797b39851da045aa1bfd0289de0858a1377c48.tar.bz2
vim-07797b39851da045aa1bfd0289de0858a1377c48.zip
Switched to nvim and neovide
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
..