Skip to content

Instantly share code, notes, and snippets.

@heathdutton
Created February 22, 2017 20:28
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save heathdutton/e8256f88d1ac19850734ad0204f38e14 to your computer and use it in GitHub Desktop.
Save heathdutton/e8256f88d1ac19850734ad0204f38e14 to your computer and use it in GitHub Desktop.
Install iTerm2, Material, Menlo, Fish, Oh-my-fish, and Agnoster.
#!/usr/bin/env bash
# Installs:
# Iterm2
# Powerline fonts (for Menlo)
# Material Design (color scheme)
# Fish
# Oh-my-fish
# Agnoster theme (works well with Material)
# killall -9 "iTerm"
# killall -9 "iTerm2"
brew update
brew cask install iterm2
git clone https://github.com/powerline/fonts.git /tmp/fonts
bash /tmp/fonts/install.sh
rm -rf /tmp/fonts
brew install fish
chsh -s /usr/local/bin/fish
curl -L http://get.oh-my.fish | fish
omf install agnoster
curl -o ~/Library/Preferences/com.googlecode.iterm2.plist https://gist.githubusercontent.com/heathdutton/c966ea66ec8f8314af86e8e5b9949dd6/raw/c1589627ca6b4eca35a83af2ae1fe7bfa5e8309e/com.googlecode.iterm2.plist
open /Applications/Iterm.app
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment