Last active
April 13, 2026 15:47
-
-
Save sjonnet/b70b8634f2f56b2fb4377e9b4fd14097 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
| #!/usr/bin/env bash | |
| ## | |
| # Bootstrap | |
| ## | |
| # export HOMEBREW_CASK_OPTS="--appdir=${HOME}/Applications" | |
| # XCode Select | |
| sudo xcode-select --install | |
| # Homebrew install | |
| # /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
| # brew install Core Utils | |
| brew install coreutils | |
| # Brew install CURL | |
| brew install curl | |
| # Brew install Git | |
| brew install git | |
| # Brew install MISE | |
| brew install mise | |
| # MISE use Java | |
| mise use -g java@corretto-21.0.6.7 | |
| # MISE use Python | |
| mise use -g python | |
| # MISE use Go | |
| mise use -g go | |
| # MISE use Rust | |
| mise use -g rust | |
| # MISE use Node | |
| mise use -g node | |
| # Brew install Lazygit | |
| brew install lazygit | |
| # Brew install Starship | |
| brew install starship | |
| echo 'eval "$(starship init zsh)"' >> ~/.zshrc | |
| brew install --cask font-jetbrains-mono-nerd-font | |
| # Brew install tmux | |
| brew install tmux | |
| # Brew install Neovim | |
| brew install neovim | |
| # Git install LazyVim | |
| git clone https://github.com/LazyVim/starter ~/.config/nvim | |
| # Brew install Fastfetch | |
| brew install fastfetch | |
| # Brew install fzf | |
| brew install fzf | |
| # Brew install Btop | |
| brew install btop | |
| # Brew install Docker | |
| # brew install --cask docker | |
| # Brew install Lazy Docker | |
| brew install lazydocker | |
| # Brew install Databricks | |
| # brew tap databricks/tap | |
| # brew install databricks | |
| # Brew install Azure CLI | |
| brew install azure-cli | |
| # Brew install Azure Functions Core Tools | |
| brew install azure-functions-core-tools | |
| # Brew install Kubernetes Command Line Tool | |
| brew install kubectl | |
| # Brew install Azure Kubernetes Login | |
| brew install Azure/kubelogin/kubelogin | |
| # MISE use Maven | |
| # mise use -g maven | |
| # Brew install Zed | |
| # brew install --cask zed | |
| # Brew install IntelliJ | |
| # brew install --cask intellij-idea | |
| # Brew install Android Studio | |
| # brew install --cask android-studio | |
| # Brew install MongoDB Compass | |
| # brew install --cask mongodb-compass | |
| # Brew install Redis Insight | |
| # brew install --cask redisinsight | |
| # Brew install Headlamp | |
| # brew install --cask headlamp | |
| # NPM install Codex | |
| # npm install -g @openai/codex | |
| # NPM install Gemini CLI | |
| # npm install -g @google/gemini-cli | |
| # Brew install Claude Code | |
| brew install --cask claude-code | |
| # Brew install Firefox | |
| # brew install --cask firefox | |
| # Brew install Google Chrome | |
| # brew install --cask google-chrome | |
| # Brew install Claude | |
| # brew install --cask claude |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment