Skip to content

taioo/My-Custom-Terminal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 

Repository files navigation

Custom Terminal

Install packages

( via homebrew )

brew tap homebrew/cask-fonts && brew install font-hack-nerd-font
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

powerlevel10k in oh-my-zsh

( Powerlevel10k understands all Powerlevel9k configuration parameters )

git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/powerlevel10k
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting

zsh-autosuggestions in oh-my-zsh

git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions



Edit zsh profile file

To open zsh profile

open .zshrc

Change theme

ZSH_THEME="powerlevel10k/powerlevel10k"

Edit plugins

plugins=(
git
osx
zsh-syntax-highlighting
zsh-autosuggestions
)

customise Powerlevel9/10k

run in terminal

p10k configure

or

open ~/.p10k.zsh

Update plugins

git -C ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k pull &&
git -C ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting pull &&
git -C ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/zsh-autosuggestions pull

Set terminal font to "Hack Nerd Font"

Have fun





VS Code settings

{
"terminal.integrated.fontFamily": "Hack Nerd Font",
}