From 56b5e33443dadb7d82f79b60fad6b1663f85edb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki-Chudyk?= Date: Tue, 1 Mar 2016 10:40:50 +0100 Subject: [PATCH 1/5] use newer multirust installer --- common/configure_fresh_system | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/configure_fresh_system b/common/configure_fresh_system index 50178872..7e593ade 100755 --- a/common/configure_fresh_system +++ b/common/configure_fresh_system @@ -68,7 +68,7 @@ set -e #rust echo "installing rust" BLASTOFF_TEMP="/tmp/blastoff.sh" -curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh > "$BLASTOFF_TEMP" +curl -sf https://raw.githubusercontent.com/brson/multirust/master/quick-install.sh > "$BLASTOFF_TEMP" chmod a+x "$BLASTOFF_TEMP" "$BLASTOFF_TEMP" --yes rm -f "$BLASTOFF_TEMP" From a5fb7ed1b481e38c97ee5554227296c0b6d629b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki-Chudyk?= Date: Tue, 1 Mar 2016 13:29:55 +0100 Subject: [PATCH 2/5] YCM update --- .vim/bundle/YouCompleteMe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vim/bundle/YouCompleteMe b/.vim/bundle/YouCompleteMe index e5e5a6aa..94ec3ed9 160000 --- a/.vim/bundle/YouCompleteMe +++ b/.vim/bundle/YouCompleteMe @@ -1 +1 @@ -Subproject commit e5e5a6aa7ae70205cee3b4443f9274d3c8468c22 +Subproject commit 94ec3ed902e4e55b1766232d3b0e7d602bc2c472 From 24609141c18635dcfcb368598b0b002385d92083 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki-Chudyk?= Date: Tue, 1 Mar 2016 22:06:52 +0100 Subject: [PATCH 3/5] explicitely install diff-so-fancy using separate npm command --- common/configure_fresh_system | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/configure_fresh_system b/common/configure_fresh_system index 7e593ade..286dc9a1 100755 --- a/common/configure_fresh_system +++ b/common/configure_fresh_system @@ -94,7 +94,8 @@ source $HOME/.rvm/scripts/rvm rvm install ruby # talks: reveal-md -sudo npm install -g reveal-md diff-so-fancy +sudo npm install -g reveal-md +sudo npm install -g diff-so-fancy # vdir syncer echo "installing vdirsyncer" From fa5ef5bf466a5e7ac03be9a3dce31135ff58714d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki-Chudyk?= Date: Sat, 12 Mar 2016 07:52:48 +0100 Subject: [PATCH 4/5] oh-my-zsh update --- .oh-my-zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.oh-my-zsh b/.oh-my-zsh index f558a460..83cf8dc1 160000 --- a/.oh-my-zsh +++ b/.oh-my-zsh @@ -1 +1 @@ -Subproject commit f558a460c289a41811e0c4b89f04d539c66224a1 +Subproject commit 83cf8dc16f51babbb0193c5b97e568739c1f40de From dfaca940e7a8f7682733290cf4a534625e8f49d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki-Chudyk?= Date: Sat, 12 Mar 2016 15:09:42 +0100 Subject: [PATCH 5/5] do not build racer in the initial script --- common/configure_fresh_system | 2 -- 1 file changed, 2 deletions(-) diff --git a/common/configure_fresh_system b/common/configure_fresh_system index 286dc9a1..26eaef06 100755 --- a/common/configure_fresh_system +++ b/common/configure_fresh_system @@ -75,8 +75,6 @@ rm -f "$BLASTOFF_TEMP" multirust update multirust default stable export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib -cd "$DIR/.vim/bundle/racer/" -cargo build cd "$DIR/../" echo "getting rust sources..." if [[ ! -d rust ]]; then