Created
February 22, 2017 20:28
-
-
Save heathdutton/e8256f88d1ac19850734ad0204f38e14 to your computer and use it in GitHub Desktop.
Install iTerm2, Material, Menlo, Fish, Oh-my-fish, and Agnoster.
This file contains 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
#!/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