11 lines
288 B
Bash
Executable File
11 lines
288 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if ! command -v brew &> /dev/null
|
|
then
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
|
fi
|
|
|
|
brew install fish fd fzf ripgrep neovim stow zoxide lsd
|
|
echo '/usr/local/bin/fish' >> /etc/shells
|
|
chsh -s /usr/local/bin/fish
|