Created
May 14, 2026 01:20
-
-
Save tdensmore/0b4f6f93aa333268bd7d6045163a0cc9 to your computer and use it in GitHub Desktop.
fresh-install.sh
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
| # install Homebrew | |
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
| # install things | |
| # ZSH | |
| brew install zsh | |
| $(brew --prefix)/bin/zsh | |
| brew install zinit | |
| brew install starship | |
| brew install neovim | |
| brew install zellij | |
| brew install git | |
| #brew install fontconfig | |
| brew install pure | |
| brew install --cask \ | |
| font-jetbrains-mono-nerd-font \ | |
| font-iosevka-term-nerd-font \ | |
| font-fira-mono-nerd-font | |
| brew install --cask 1password | |
| brew install --cask dropbox | |
| # create a directory | |
| mkdir ~/workspace | |
| cd ~/workspace | |
| git clone |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment