Add Install Script and Brew Package List

This commit is contained in:
2024-09-02 13:56:44 -07:00
parent c36bc8f436
commit 4915c167cf
2 changed files with 55 additions and 0 deletions

21
install Normal file
View File

@@ -0,0 +1,21 @@
#!/bin/sh
# Install Brew
NONINTERACTIVE=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Set Homebrew Taps
brew tap hasicorp/tap
# Install Brew Packages
xargs brew install < brewlist
# Sym Link Configs
folders=("alacritty" "nvim" "tmux" "zsh")
for folder in "${folders[@]}"
do
echo "Symlinking $folder"
stow "$folder" --target ~
done