Skip to content

Instantly share code, notes, and snippets.

@avocadowastaken
Last active December 13, 2022 11:11
Show Gist options
  • Save avocadowastaken/206f7d116adf23f6a3e2dc44f272f139 to your computer and use it in GitHub Desktop.
Save avocadowastaken/206f7d116adf23f6a3e2dc44f272f139 to your computer and use it in GitHub Desktop.
# Install Fish
brew install fish
# Enter fish and setup brew to path
fish
fish_add_path /opt/homebrew/bin
# Register fish as a shell
sudo echo $(which fish) >> /etc/shells
# Disable Terminal last login banner
touch ~/.hushlogin
# Disable Fish greeting banner
mkdir -p ~/.config/fish
echo "set -g fish_greeting" >> ~/.config/fish/config.fish
# Setup Fisher
brew install fisher
fisher install jorgebucaran/fisher
# Setup minimalistic prompt
fisher install jorgebucaran/hydro
# Migrate zsh history
curl -sL https://gist.githubusercontent.com/umidbekk/92eb6164c737016a6e9bf73fa5027c37/raw/a3b85354fe6ad1b18045cb05dcdb44fc7f194014/zsh_to_fish.py | python3 -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment