Skip to content

Instantly share code, notes, and snippets.

@Azer0s
Last active January 21, 2020 15:32
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 Azer0s/fa167af7d1f8787ad66cc3735ce07ad2 to your computer and use it in GitHub Desktop.
Save Azer0s/fa167af7d1f8787ad66cc3735ce07ad2 to your computer and use it in GitHub Desktop.

Install homebrew

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

Install ZSH and set as default shell

brew install zsh
sudo sh -c "echo $(which zsh) >> /etc/shells" && chsh -s $(which zsh)

Install oh-my-zsh and some useful plugins

sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

Autocomplete

git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
  • Open ~/.zshrc in a text editor.
  • Add zsh-autosuggestions to plugins=(..)

Syntax highlighting

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
  • Open ~/.zshrc in a text editor.
  • Add zsh-syntax-highlighting to plugins=(..)

Install node.js

brew install node

Install vscode

brew cask install visual-studio-code

Install google-chrome

brew cask install google-chrome

Install gitkraken

brew cask install gitkraken

Install jetbrains-toolbox

brew cask install jetbrains-toolbox

Install typora

brew cask install typora

Install insomnia

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