Last active
August 29, 2015 14:01
-
-
Save dominikkukacka/81bb31d7e418b284aa8c to your computer and use it in GitHub Desktop.
server_setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo aptitude update | |
sudo aptitude install git htop vim zsh | |
useradd -m -G sudo -s /usr/bin/zsh dominik && passwd dominik | |
curl -L http://install.ohmyz.sh | sh | |
cd ~/.oh-my-zsh/themes | |
cp robbyrussell.zsh-theme mytheme.zsh-theme | |
PROMPT="PROMPT='%{\$fg_bold[white]%}%M %{\$fg_bold[red]%}➜ %{\$fg_bold[green]%}%p %{\$fg[cyan]%}%c %{\$fg_bold[blue]%}\$(git_prompt_info)%{\$fg_bold[blue]%} % %{$reset_color%}'" | |
sed -i "2s/.*/$PROMPT/" mytheme.zsh-theme | |
cd ~ | |
sed -i "s/robbyrussell/mytheme/" .zshrc | |
source ~/.zshrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment