Add Install Script and Brew Package List
This commit is contained in:
21
install
Normal file
21
install
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user