Repository: novaspirit/pimpyourterm Branch: main Commit: f2a3a0851647 Files: 1 Total size: 1.2 KB Directory structure: gitextract_z8ov1vul/ └── README.md ================================================ FILE CONTENTS ================================================ ================================================ FILE: README.md ================================================ ## Pimp Your Terminal show note from youtube video -> ![term.jpg](term.jpg) ##### Install ZSH `sudo apt install zsh` ##### Set zsh as default `chsh -s $(which zsh)` ##### in gnome terminal > **profile custom command** ##### zsh default themes https://github.com/ohmyzsh/ohmyzsh/wiki/Themes edit .zshrc ZSH_THEME="jonathan" ##### Install ohmyzsh `sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"` ##### Zsh Must-Have Plugin `git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions` `git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting` edit .zshrc to include plugins plugins=(git zsh-autosuggestions zsh-syntax-highlighting) ##### plugins include with ohmyzsh https://github.com/ohmyzsh/ohmyzsh/wiki/Plugins ##### Nerd Font https://www.nerdfonts.com/ https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/FiraMono download and install firamono for linux ##### Install Powerlevel 10k `git clone https://github.com/romkatv/powerlevel10k.git $ZSH_CUSTOM/themes/powerlevel10k` edit .zshrc ZSH_THEME="powerlevel10k/powerlevel10k" POWERLEVEL9K_MODE="nerdfont-complete"