Skip to content

Instantly share code, notes, and snippets.

@retrography
Last active August 29, 2015 14:17
Show Gist options
  • Save retrography/955578106208022b222e to your computer and use it in GitHub Desktop.
Save retrography/955578106208022b222e to your computer and use it in GitHub Desktop.
Install oh-my-zsh my way...
#!/bin/bash
os=`uname`
if [[ "$os" == 'Linux' ]]; then
sudo apt-get install zsh zsh-common
chsh -s /bin/zsh
elif [[ "$os" == 'Darwin' ]]; then
brew install zsh
chsh -s /usr/local/bin/zsh
fi
wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O - | sh
cp ~/.zshrc ~/.zshrcbk
sed -e 's/^\(ZSH_THEME="\)[^"]*/\1agnoster/' \
-e 's/^\(plugins=(\)[^)]*/\1git utility ruby syntax-highlighting history common-aliases cpanm dirhistory gem pip python rvm/' \
-e 's/^\(export PATH="\)\($PATH:\)\?/\1$PATH:/' \
-e 's/$PATH$PATH/$PATH/' ~/.zshrcbk >~/.zshrc
if [[ "$os" == 'Darwin' ]]; then
sed -e 's/^\(plugins=.*[^)]\)/\1 osx/' ~/.zshrc
fi
@retrography
Copy link
Author

Run using wget https://gist.githubusercontent.com/retrography/955578106208022b222e/raw -O - | bash

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment