My personal Oh My Zsh setup with Powerlevel10k theme.
.zshrc- Main zsh configuration.p10k.zsh- Powerlevel10k theme configuration
sh -c "$(curl -fsSL 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/powerlevel10kgit 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 ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-completions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-completionsbrew install --cask font-meslo-lg-nerd-fontgit clone git@github.com:RutgerDijk/zhbs.git ~/zhbs-config
cp ~/zhbs-config/.zshrc ~/.zshrc
cp ~/zhbs-config/.p10k.zsh ~/.p10k.zsh
source ~/.zshrcAdd to your VS Code settings (Cmd+, → Open Settings JSON):
{
"terminal.integrated.fontFamily": "MesloLGS Nerd Font"
}Run p10k configure to reconfigure the Powerlevel10k theme interactively.
- git - Git aliases and functions
- zsh-autosuggestions - Fish-like autosuggestions
- zsh-syntax-highlighting - Syntax highlighting for commands
- zsh-completions - Additional completion definitions
- web-search - Search from terminal (
google foo,ddg bar)