This file contains 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
# add fish-shell repo and install: | |
sudo apt-add-repository ppa:fish-shell/release-3 | |
sudo apt update | |
sudo apt install fish | |
# add nerd-font hack: | |
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/Hack.zip | |
sudo mkdir /usr/local/share/fonts/Hack | |
sudo unzip Hack.zip -d /usr/local/share/fonts/Hack/ | |
sudo fc-cache -fv |