Last active
December 13, 2022 11:11
-
-
Save avocadowastaken/206f7d116adf23f6a3e2dc44f272f139 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 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