Skip to content

Instantly share code, notes, and snippets.

@skellertor
Last active June 5, 2018 04:35
Show Gist options
  • Save skellertor/b662a3a63d9054936a21e43a6ecfa81b to your computer and use it in GitHub Desktop.
Save skellertor/b662a3a63d9054936a21e43a6ecfa81b to your computer and use it in GitHub Desktop.
Setting up mac for Node.js Development
  1. install nvm
  2. install homebrew and launchrocket
  3. install webstorm, vscode, and atom
  4. install atlassian sourcetree
  5. install hyper and iterm
  6. install postman
  7. install sequel pro

.bash_profile

export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm

export CLICOLOR=1
LSCOLORS=ExFxBxDxCxegedabagacad
export PS1='\[\033[0;91m\][\u]\[\033[0m\] in \[\033[0;97m\]\W\[\033[0m\]\[\033[0;94m\] 🍔 \[\033[0m\] '

alias showFiles='defaults write com.apple.finder AppleShowAllFiles YES; killall Finder /System/Library/CoreServices/Finder.app'
alias hideFiles='defaults write com.apple.finder AppleShowAllFiles NO; killall Finder /System/Library/CoreServices/Finder.app'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment