Do not install custom vim by default
This commit is contained in:
parent
4afacc8a72
commit
072915c355
6 changed files with 6 additions and 10 deletions
|
@ -1 +1 @@
|
|||
/home/cyrylplotnicki/dev/dotfiles/.hyper_plugins
|
||||
/home/cyryl/dev/dotfiles/.hyper_plugins
|
|
@ -104,10 +104,6 @@ fc-cache -rv
|
|||
$SUDO fc-cache -rv
|
||||
set -e
|
||||
|
||||
if [[ -z $NOVIM ]]; then
|
||||
source "$DIR/common/install_vim_from_sources.sh"
|
||||
fi
|
||||
|
||||
if [[ -z $NORUST ]]; then
|
||||
#rust
|
||||
echo "installing rust"
|
|
@ -93,4 +93,4 @@ if [ "$(id -u)" != "0" ]; then
|
|||
code --install-extension vscodevim.vim
|
||||
fi
|
||||
|
||||
DIR="$DIR" "$DIR/common/configure_fresh_system.sh"
|
||||
DIR="$DIR" "$DIR/common/up.sh"
|
||||
|
|
|
@ -114,7 +114,7 @@ DIR=`realpath "$DIR"`
|
|||
|
||||
if [[ -z $CONTINUOUS_INTEGRATION ]]; then
|
||||
echo "Invoking common configuration scripts"
|
||||
DIR="$DIR" $DIR/common/configure_fresh_system.sh
|
||||
DIR="$DIR" $DIR/common/up.sh
|
||||
fi
|
||||
|
||||
ln -vfs "$DIR/.gitconfig.mac" $HOME/.gitconfig
|
||||
|
|
|
@ -31,4 +31,4 @@ fi
|
|||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
DIR="$DIR/../"
|
||||
DIR="$DIR" $DIR/common/configure_fresh_system.sh
|
||||
DIR="$DIR" $DIR/common/up.sh
|
||||
|
|
|
@ -41,7 +41,7 @@ python /tmp/get-pip.py
|
|||
export PATH="$OUTER_CLONE:$PATH"
|
||||
|
||||
echo "Invoking common configuration script"
|
||||
$DIR/common/configure_fresh_system.sh
|
||||
$DIR/common/up.sh
|
||||
|
||||
echo "Making symlinks"
|
||||
ln -vfs $DIR/windows_cygwin/.minttyrc $HOME/
|
||||
|
|
Loading…
Reference in a new issue