Last active
June 15, 2025 15:21
-
-
Save amirilovic/5db680151a0672a12cc8de62cfe9e366 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
brew install zsh | |
brew install fzf | |
$(brew --prefix)/opt/fzf/install | |
brew install go | |
brew install jq | |
brew install kubectl | |
brew install romkatv/powerlevel10k/powerlevel10k | |
echo "source /opt/homebrew/opt/powerlevel10k/powerlevel10k.zsh-theme" >> ~/.zshrc | |
source ~/.zshrc | |
brew install nvm | |
nvm install --lts | |
brew install python # new python version | |
# python2 comes by default on mac, you can replace | |
# default behaviour writing an alias to point python3: | |
# alias python=/opt/homebrew/bin/python3 | |
# alias pip="/opt/homebrew/bin/python3 -m pip" | |
brew install openjdk | |
echo 'export PATH="/opt/homebrew/opt/openjdk/bin:$PATH"' >> ~/.zshrc | |
brew install --cask alfred | |
# better cmd + space finder | |
# remove default cmd + space binding from: | |
# system preferences > keyboard > shortcuts > spotlight | |
brew install docker | |
brew install docker-compose | |
brew install colima | |
brew install --cask iterm2 | |
brew install --cask rectangle | |
brew install --cask visual-studio-code | |
brew install --cask google-chrome | |
brew install --cask notion |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment