move YCM to be built after rust and racer are already installed
This commit is contained in:
parent
f8d88d67a6
commit
80d45b6043
1 changed files with 4 additions and 4 deletions
|
@ -43,10 +43,6 @@ ln -vfs "$DIR/.config/redshift.conf" ~/.config/redshift.conf
|
||||||
|
|
||||||
source ~/.setenv
|
source ~/.setenv
|
||||||
|
|
||||||
cd "$DIR/.vim/bundle/YouCompleteMe/"
|
|
||||||
git submodule update --init --recursive
|
|
||||||
./install.py --racer-completer --clang-completer
|
|
||||||
|
|
||||||
# symlink 'nodejs' as node on some systems
|
# symlink 'nodejs' as node on some systems
|
||||||
# will replace symlink if it exists, but won't replace regular file
|
# will replace symlink if it exists, but won't replace regular file
|
||||||
if [[ ! -f /usr/bin/node ]]; then
|
if [[ ! -f /usr/bin/node ]]; then
|
||||||
|
@ -92,6 +88,10 @@ fi
|
||||||
cargo install -f rustfmt
|
cargo install -f rustfmt
|
||||||
cargo install -f racer
|
cargo install -f racer
|
||||||
|
|
||||||
|
cd "$DIR/.vim/bundle/YouCompleteMe/"
|
||||||
|
git submodule update --init --recursive
|
||||||
|
./install.py --racer-completer --clang-completer
|
||||||
|
|
||||||
# go
|
# go
|
||||||
export GOPATH="$HOME/go"
|
export GOPATH="$HOME/go"
|
||||||
mkdir -p "$GOPATH"
|
mkdir -p "$GOPATH"
|
||||||
|
|
Loading…
Reference in a new issue