brew install node
Last active
March 23, 2017 14:48
-
-
Save elijahmurray/7f77c163329046f12584 to your computer and use it in GitHub Desktop.
Notes for Setting up basic environment on new Macbook
https://danielmiessler.com/blog/first-10-things-new-mac/
Setup Environment:
- install Xcode through App Store
- Open it and install components
- Use zsh:
chsh -s $(which zsh)
- Use oh my zsh:
curl -L http://install.ohmyz.sh | sh
- Install homebrew:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- Setup homebrew:
brew doctor
- implement prompts in terminal from above command
- install
tmux
andheroku
CLI:brew install tmux heroku
- Install vundle:
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
Setup github SSH
Setup Dot Files:
- clone config/dot files for preferences: (
.vimrc
,.zshrc
,.tmux.conf
) git init
git remote add origin [email protected]:elijahmurray/dotfiles.git
git pull origin master
- Install vundle plugins:
vi ~/.zshrc
=> run:PluginInstall
git config --global alias.br branch
git config --global alias.co checkout
Setup Ruby Environment:
- install bundler:
gem install bundler
- Install RVM:
curl -sSL https://get.rvm.io | bash -s stable
- Install Ruby:
rvm install ruby-2.2.5
- Use Ruby:
rvm use ruby-2.2.5 --default
- Install Rails:
sudo gem install rails
Dev Applications:
Streaming Applications:
- OBS
- Soundflower (signed)
- Soundflower setup
- Chatty Java client
- If you want to repair permissions on El Capitan
- Brew command not found:
/usr/local/bin/brew doctor
and follow the instructions - If
pg
gem won't install:brew install postgresql
- Postgres cont. Possibly
bundle exec rake db:create && bundle exec rake db:migrate
- Will likely have to install postgresql enterprise tools as well: http://www.enterprisedb.com/products-services-training/pgdownload
- Notes from here: https://gorails.com/setup/osx/10.11-el-capitan - may not work inside of tmux
- RVM Issues
- rvmsudo rvm get stable --auto-dotfiles
- rvm fix-permissions system
- rvm group add rvm $USER
rvm reset
http://stackoverflow.com/questions/18737006/rvm-ruby-permission-denied- VIM errors
brew install vim --override-system-vi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment