These are the programs I typically download when setting up a new computer:
- Chrome - https://www.google.com/chrome/
- GitHub Desktop - https://desktop.github.com/
- VS Code - https://code.visualstudio.com/Download
- iterm2 - https://iterm2.com/
- ohmyzsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
- Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Node - https://nodejs.org/en/download/
- Python - https://www.python.org/downloads/
- Android Studio
- Xcode
defaults write -g com.apple.mouse.scaling -float 5.0
or
defaults write -g com.apple.mouse.scaling 5.0
Show Hidden Files
defaults write com.apple.Finder AppleShowAllFiles true
killall Finder
xcode-select --install
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# Open VS Code
code .zshrc
# Go to line --> ZSH_THEME="robbyrussell"
update the theme to "agnoster"
# clone
git clone https://github.com/powerline/fonts.git --depth=1
# install
cd fonts
./install.sh
# clean-up a bit
cd ..
rm -rf fonts
# Quit and restart iterm
# 1. Open Preferences
# 2. Profiles > Text > Font
# 3. I personally like Roboto Mono for Powerline with Bold setting @ 14px
# Colors
# Foreground - 27992D
# Selected text - 159D9D
# Cursor - 23FD00
# ANSI COLORS > BLUE > COL 1 - 6C71C4
# create
ssh-keygen -t rsa -b 4096 -C "example@email.com"
# Start the ssh-agent in the background
eval "$(ssh-agent -s)"
# Add ssh config file
touch ~/.ssh/config
## add the following to the config
Host *
AddKeysToAgent yes
UseKeychain yes
IdentityFile ~/.ssh/id_rsa # or the location of your rsa key
# Add your SSH private key to the ssh-agent and
# store your passphrase in the keychain
ssh-add -K ~/.ssh/id_rsa
# copy key to Github account
pbcopy < ~/.ssh/id_rsa.pub
- Atom Keymap
- Code Spell Checker
- ESLint
- GitLens
- Highlight Line
- JavaScript and TypeScript Nightly
- markdown lint
- Python
- TODO Highlight
- TypeScript Hero
- Editor: Tab Size --> 2
- Files: Insert Final Newline
- Editor: Render Whitespace --> ALL
- Files: Trim Trailing Whitespace
- Files: Insert Final Newlines