From 3010b6de1effdf1be5780378b54bdb2a14e6dea2 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Sun, 12 Jan 2025 22:12:52 +0100 Subject: [PATCH] ZSH Config: add Powerlevel10K shell theming --- Configs/ZSHShell/.zshrc | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/Configs/ZSHShell/.zshrc b/Configs/ZSHShell/.zshrc index 4068751..989c864 100644 --- a/Configs/ZSHShell/.zshrc +++ b/Configs/ZSHShell/.zshrc @@ -57,3 +57,20 @@ cat << "EOF" EOF #################################################################################################################################################### + + +#################################################################################################################################################### +# Powerlevel10k +#################################################################################################################################################### +# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc. +# Initialization code that may require console input (password prompts, [y/n] +# confirmations, etc.) must go above this block; everything else may go below. +if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then + source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" +fi + +source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme + +# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. +[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh +####################################################################################################################################################