Skip to content

Latest commit

 

History

History
40 lines (36 loc) · 1.26 KB

README.md

File metadata and controls

40 lines (36 loc) · 1.26 KB

Terminal Setup ( Ubuntu )

Shell Initialized Sample Image 2

Apparatus

Reciepe

  1. Install initial dependencies
sudo apt-get install -y cowsay fortune fortunes-min
  1. 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
  1. 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
  1. Install Startship
curl -sS https://starship.rs/install.sh | sh