/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"`
Install some essential CLI apps
brew install yarn docker gnupg git
brew tap homebrew/cask
Install some essential UI apps
brew install --cask visual-studio-code google-chrome iterm2 github hyperswitch slack toggl-track fish spotify dropbox safeincloud-password-manager
Install Fish shell and set as default
brew install fish
curl -L https://get.oh-my.fish | fish
sudo bash -c 'echo /usr/local/bin/fish >> /etc/shells'
chsh -s /usr/local/bin/fish
Install Fisher
curl https://git.io/fisher --create-dirs -sLo ~/.config/fish/functions/fisher.fish
Install packages
fisher install jorgebucaran/nvm.fish jethrokuan/z
Install nodejs
nvm install lts
- Import keys
If needed:
sudo chmod 600 ~/.ssh/id_rsa`
- Add SSH key password into keychain
ssh-add -K ~/.ssh/id_rsa
gpg --import secret-key-backup.asc
Some instructions here: (https://merikan.com/2019/05/how-to-sign-git-commits/)