Terminal Customisation
Oh My Zsh is installed by running one of the following commands in your terminal. You can install this via the command-line with either
curl
, wget
or another similar tool.Method | Command |
curl | sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" |
wget | sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" |
fetch | sh -c "$(fetch -o - https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" |
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
Requirements
sudo atp install bc
sudo apt-get install fontforge;
Download Fonts
git clone --depth=1 https://github.com/ryanoasis/nerd-fonts
Patch Fonts
cd nerd-fonts/bin/scripts/
./gotta-patch-em-all-font-patcher\!.sh 'Fira'
Install Font
cd ../..
./install.sh FiraCode
Change Fonts

Test Fonts
for i in {62208..62251}; do printf "\u$(printf %x $i) "; done


uncomment vpn_ip in ~/.p10k.zsh

Change vpn_ip Section
Install FZF
apt install fzf ripgrep
add FZF to ~/.zshrc config file

More Plugins
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
Close and reopen, or type:
source ~/.zshrc
Last modified 1yr ago