Last active
June 6, 2020 22:21
-
-
Save awave1/1589dbca6e0cd22e419f73ad17ebddee to your computer and use it in GitHub Desktop.
Quick fish shell setup
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
#!/usr/bin/env bash | |
sudo apt install fish | |
FISH_SH=$(which fish) | |
echo "$FISH_SH" | sudo tee -a /etc/shells | |
chsh -s "$FISH_SH" | |
# fisher | |
curl https://git.io/fisher --create-dirs -sLo ~/.config/fish/functions/fisher.fish | |
# fisher packages | |
fisher add rafaelrinaldi/pure | |
fisher add jorgebucaran/fish-nvm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment