- shell - Fish - https://fishshell.com/
- config_file - config.fish
- fonts - Nerd Fonts - [email protected]:ryanoasis/nerd-fonts.git
- prompt - Starship - https://starship.rs/
- config_file - starship.toml
- Install initial dependencies
sudo apt-get install -y cowsay fortune fortunes-min
- Install & setup fish shell along with nvm ( Remove default greeting )
sudo apt-add-repository ppa:fish-shell/release-3
sudo apt update
sudo apt install fish
echo /usr/local/bin/fish | sudo tee -a /etc/shells
chsh -s /usr/local/bin/fish
set -U fish_greeting
curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher
fisher install jorgebucaran/nvm.fish
- Install Nerd Fonts
For WSL2( Windows 11 ) fonts needs to be installed on Windows for icons and font to be displayed properly on terminal. This covers installation for Ubuntu.
git clone --depth 1 [email protected]:ryanoasis/nerd-fonts.git
cd nerd-fonts
bash ./install.sh
- Install Startship
curl -sS https://starship.rs/install.sh | sh