Skip to content

Instantly share code, notes, and snippets.

@s4nchez
Last active January 1, 2016 22:19
Show Gist options
  • Save s4nchez/981b682a96616f7ced6c to your computer and use it in GitHub Desktop.
Save s4nchez/981b682a96616f7ced6c to your computer and use it in GitHub Desktop.
Workstation Terminal Configuration

Pre requisites

  • Mac OSX
  • Brew
  • iTerm2
  • wget
  • git

iTerm colour scheme

Download solarized dark theme:

wget -P ~/Downloads https://raw.githubusercontent.com/altercation/solarized/master/iterm2-colors-solarized/Solarized%20Dark.itermcolors

In Settings > Profiles

  • create new profile
  • set it as default
  • Color > Import... (select ~/Downloads/Solarized Dark.itermcolors)
  • Color > Solarized Dark
  • Text > Disable Draw bold text in bright colors (breaks color highlight for ls)
  • Restart

zsh

Install:

brew install zsh

Configure as default shell:

which zsh | sudo tee -a /etc/shells
chsh -s $(which zsh)

Restart iterm2

Install antigen:

git clone https://github.com/zsh-users/antigen.git

Configure .zshrc

source antigen/antigen.zsh

antigen use oh-my-zsh
antigen bundle command-not-found
antigen bundle history
antigen bundle zsh-users/zsh-completions src
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle kennethreitz/autoenv
antigen bundle git

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