Skip to content

Instantly share code, notes, and snippets.

@w3cj
Created July 17, 2018 21:27
Show Gist options
  • Save w3cj/76cd9fb9f346e153b6f0dc46fd025620 to your computer and use it in GitHub Desktop.
Save w3cj/76cd9fb9f346e153b6f0dc46fd025620 to your computer and use it in GitHub Desktop.
xcode-select --install
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew update
brew cask install iterm2
# update iterm2 settings -> colors, keep directory open new shell, keyboard shortcuts
brew install bash # latest version of bash
# set brew bash as default shell
brew install fortune
brew install cowsay
brew install git
brew install vcprompt
# update bash_profile
brew cask install spectacle
brew cask install alfred
# set CMD+space to launch alfred
brew cask install firefox
# install nvm/node
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
nvm install stable
mkdir ~/workspace
npm install -g lite-server eslint
brew cask install visual-studio-code
# update vscode settings
# install vscode extensions
@KishorHossain
Copy link

Thanks

@leocaseiro
Copy link

spectacle is no longer maintained, I suggest you replace with rectangle.

brew cask install rectangle

@Rem0ld
Copy link

Rem0ld commented Jan 5, 2021

Homebrew Ruby is deprecated it's in bash now.

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

@Ed1123
Copy link

Ed1123 commented Feb 15, 2021

@w3cj, why don't you create your workspace dev folder inside your cloud folder?

@davidfregoli
Copy link

new cask syntax is:
brew install --cask iterm2

@Melford-D
Copy link

thanks

@ksharm50
Copy link

{brew cask install } is depreciated so instead use {brew install --cask}

@mohit-vigilante
Copy link

mohit-vigilante commented Apr 16, 2021

{brew cask install } is depreciated so instead use {brew install --cask}
showing
unknown command: cask

@jesusidev
Copy link

NVM Install for ZSH:
After install zsh

  • brew update
  • brew install nvm
  • mkdir ~/.nvm

after in your ~/.zshrc or in .bash_profile if your use bash shell:

export NVM_DIR=~/.nvm
source $(brew --prefix nvm)/nvm.sh

Reference from: https://gist.github.com/mike-casas/6d489bebf48d89f5109cd1395aabe150

@IamSheikh
Copy link

Thanks

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