From 6b9eed910fdb17f3c4dc93406cd575ffb9789d50 Mon Sep 17 00:00:00 2001 From: ViktorBarzin Date: Sat, 13 Jan 2018 22:05:21 +0000 Subject: [PATCH] add modified bira theme --- setup-env.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/setup-env.sh b/setup-env.sh index e32f671..1512cf7 100755 --- a/setup-env.sh +++ b/setup-env.sh @@ -2,18 +2,19 @@ # Install zsh sudo apt update +sudo apt upgrade sudo apt install zsh \ - python-pip && \ + python-pip # Setup oh-my-zsh sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)" && \ # Password prompt # Setup config files git clone https://github.com/ViktorBarzin/dot_files.git && \ -cp .zshrc ~/.zshrc && \ -cp .bash_aliases ~/.bash_aliases && \ -sudo cp virtualenvwrapper.sh /usr/local/bin/virtualenvwrapper.sh && \ -cp .zshenv ~/.zshenv && \ +cp -i .zshrc ~/ && \ +cp -i .bash_aliases ~/ && \ +sudo cp -i virtualenvwrapper.sh /usr/local/bin/ && \ +cp -i .zshenv ~/ && \ # Configure j (jump) # Debian like @@ -33,5 +34,5 @@ git clone https://github.com/pyenv/pyenv.git ~/.pyenv && \ # Install pip sudo pip install --upgrade pip && \ -sudo install virtualenvwrapper +sudo pip install virtualenvwrapper