Last active
December 17, 2024 02:27
-
-
Save mychaelgo/3097c872472bbf3f8569b8970537e206 to your computer and use it in GitHub Desktop.
Fresh install apps on mac
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install brew | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
brew install --cask iterm2 | |
brew install zsh | |
#oh-my-zsh | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
# 1. Open terminal and paste. | |
# 2. Open iTerm2 that we already downloaded at the first section | |
# 3. Go to iTerm2 > Preferences > Profiles > Colors Tab | |
# 4. Click Color Presets… at the bottom right | |
# 5. Click Import… | |
# 6. Select the material-design-colors.itermcolors file | |
cd Downloads | |
curl -O https://raw.githubusercontent.com/MartinSeeler/iterm2-material-design/master/material-design-colors.itermcolors | |
# https://github.com/ohmyzsh/ohmyzsh/wiki/Plugins | |
git clone https://github.com/romkatv/powerlevel10k.git $ZSH_CUSTOM/themes/powerlevel10k | |
# change the value of ZSH_THEME to following in ~/.zshrc file : | |
ZSH_THEME="powerlevel10k/powerlevel10k" | |
p10k configure | |
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting | |
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions | |
git clone https://github.com/MichaelAquilina/zsh-you-should-use.git $ZSH_CUSTOM/plugins/you-should-use | |
git clone https://github.com/fdellwing/zsh-bat.git $ZSH_CUSTOM/plugins/zsh-bat | |
# productivity | |
brew install --cask rectangle | |
brew install --cask toggl-track | |
plugins=(git zsh-autosuggestions zsh-syntax-highlighting you-should-use zsh-bat) | |
source ~/.zshrc | |
brew install nvm | |
brew install wget kubectl aws-vault chamber jq | |
brew install dopplerhq/cli/doppler | |
brew install txn2/tap/kubefwd | |
brew install tdlib | |
brew install awscli | |
brew install nmap | |
# brew cask | |
brew install --cask dbeaver-community | |
brew install --cask zoom | |
brew install --cask vlc | |
brew install --cask ngrok docker | |
brew install --cask redisinsight | |
brew install --cask slack discord whatsapp telegram | |
brew install --cask postman openvpn-connect mongodb-compass | |
brew install --cask google-chrome bitwarden firefox | |
brew install --cask visual-studio-code | |
brew install --cask spotify | |
brew install --cask google-cloud-sdk | |
brew install --cask obs | |
brew install --cask gpg-suite | |
# mobile | |
brew install --cask android-studio flutter |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment