Created
November 16, 2023 03:00
-
-
Save jgarber623/b0be754dd7b6d0828f02791f12cca2d2 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
# Install Homebrew system dependencies | |
apt update && apt install --yes build-essential curl file git procps | |
# Install Homebrew | |
NONINTERACTIVE=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
# Source Homebrew | |
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" | |
# Install dotfiles dependencies | |
brew install antidote stow | |
# Install dotfiles | |
git clone https://github.com/jgarber623/dotfiles ~/.dotfiles | |
cd ~/.dotfiles | |
make install | |
# Install additional stuff | |
brew install bat curl diff-so-fancy gh git nano starship tmux wget zsh | |
# Enter a Zsh login shell | |
zsh --login |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment