Skip to content

Instantly share code, notes, and snippets.

@colinricardo
Last active January 7, 2025 10:16
Show Gist options
  • Save colinricardo/ec2734fe2831fd368e12e03fbd4f2ded to your computer and use it in GitHub Desktop.
Save colinricardo/ec2734fe2831fd368e12e03fbd4f2ded to your computer and use it in GitHub Desktop.
# install xcode stuff
xcode-select --install
# install brew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# install warp
brew install --cask warp
# install oh-my-zsh
# install oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# git config
git config --global user.name colinricardo
git config --global user.email [email protected]
git config --global init.defaultBranch master
# brew cask installs (apps)
brew install --cask raycast spotify google-chrome framer notion whatsapp chatgpt
# brew cask installs (dev)
brew install --cask cursor visual-studio-code transmission cleanshot docker postico medis expressvpn linear-linear proxyman loom keycastr tor-browser vlc superwhisper sizzy
# brew installs (apps)
brew install slack
# brew installs (dev)
brew install redis mas
# brew installs (fonts)
brew tap homebrew/cask-fonts
brew install font-monaspace
# then to add to vscode:
# ```
# "editor.fontFamily": "'Monaspace Neon', monospace",
# "editor.fontLigatures": "'calt', 'liga', 'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08', 'ss09'",
# ```
# mas installs (need to search first)
# bear
# flow
# install bun
curl -fsSL https://bun.sh/install | bash
# install nvm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
nvm ls-remote
# install uv
curl -LsSf https://astral.sh/uv/install.sh | sh
# dock speed
defaults write com.apple.dock autohide-time-modifier -float 0; killall Dock
# keyboard speed
defaults write -g InitialKeyRepeat -int 10
defaults write -g KeyRepeat -int 1
# add blanks to dock
defaults write com.apple.dock persistent-apps -array-add '{"tile-type"="spacer-tile";}'
killall Dock
defaults write com.apple.dock persistent-apps -array-add '{"tile-type"="spacer-tile";}'
killall Dock
# make dock open faster
defaults write com.apple.dock autohide-time-modifier -float 0.0; killall Dock
defaults write com.apple.dock autohide-delay -float 0.0; killall Dock
## other
# - turn off shortcuts for screenshots and spotlight (use them for cleanshot)
# - turn off smart quotes and autocorrect in keyboard settings
# - set up hot corners
# - use 1password to manage ssh (for github keys)
# - set up window management shortcuts through raycast (if not have cloud)
# - add raycast cleanshot extension, and set up shortcuts (if not have cloud)
## other other
# - https://whimsical.com/download
# - https://postgresapp.com/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment