Skip to content

Instantly share code, notes, and snippets.

@pdougall1
Last active August 29, 2015 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pdougall1/5f34d689d96d8066d733 to your computer and use it in GitHub Desktop.
Save pdougall1/5f34d689d96d8066d733 to your computer and use it in GitHub Desktop.
setting up local environment

Setting up my local environment

basics

instll homebrew

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

use iTerm

I think we need to just go download it

https://www.iterm2.com/

Shell

brew install zsh # install zsh
chsh -s /usr/local/bin/zsh # change shell to use the brew installed zsh

if it returns chsh: /usr/local/bin/zsh: non-standard shell then add /usr/local/bin/zsh to the end of the /etc/shells file. This will also require opening a new shell to see, well, the new shell.

Whatever, oh-my-zsh is fine

curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh

install github gem

gem install github

text editor

install MacVim:

brew install macvim --override-system-vim

set up vim configby following this

Sublime

set ensure_newline_at_eof_on_save to true

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