Skip to content

Instantly share code, notes, and snippets.

@awave1
Last active June 6, 2020 22:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save awave1/1589dbca6e0cd22e419f73ad17ebddee to your computer and use it in GitHub Desktop.
Save awave1/1589dbca6e0cd22e419f73ad17ebddee to your computer and use it in GitHub Desktop.
Quick fish shell setup
#!/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