Skip to content

Instantly share code, notes, and snippets.

@vishalkanaujia
Last active August 31, 2021 23:56
Show Gist options
  • Save vishalkanaujia/3768c53a55f30b14a2fecd1eadbcba7f to your computer and use it in GitHub Desktop.
Save vishalkanaujia/3768c53a55f30b14a2fecd1eadbcba7f to your computer and use it in GitHub Desktop.
Common Mac Software
#!/bin/bash
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew update
brew install --cask iterm2
brew install wget
brew install --cask spotify
brew install --cask spotify-notifications
brew install --cask java
brew install autojump
brew upgrade
# key repeat on Mac
defaults write -g ApplePressAndHoldEnabled -bool false
# Install redis-cli
brew tap ringohub/redis-cli
brew update && brew doctor
brew install redis-cli
# 2FA Authy
brew install --cask authy
# Oh my zsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# golang-cli lint
brew install golangci-lint
brew upgrade golangci-lint
brew install --cask slack
brew install --cask docker
# Amazing note taking
brew install --cask obsidian
# Much better tab switcher
brew install --cask alt-tab
# flux for eyes
brew install --cask flux
brew install --cask adobe-acrobat-reader
brew install node
#semgrep
python3 -m pip install --upgrade setuptools
python3 -m pip install --upgrade pip
pip install semgrep
brew install fzy
brew install zplug
#zsh plugins
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-completions ${ZSH_CUSTOM:=~/.oh-my-zsh/custom}/plugins/zsh-completions
# download the following font for coding
## https://github.com/arrowtype/recursive/blob/main/fonts/ArrowType-Recursive-1.079/Recursive_Code/RecMonoCasual/RecMonoCasual-Regular-1.079.ttf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment