diff options
author | self <self@sateoki.xyz> | 2022-06-11 02:01:35 +0100 |
---|---|---|
committer | self <self@sateoki.xyz> | 2022-06-11 02:01:35 +0100 |
commit | 75e24ce86874d4feab8cd88b49526c920f5eacf2 (patch) | |
tree | 2e26f9d0fcb4c2fb0520f89f16f60a1c29659866 /zsh/.zshrc | |
parent | ba46e74d4e1f5d8822e97c5b0b52a15f55ad1ef2 (diff) |
Added powerlevel10k config
Diffstat (limited to 'zsh/.zshrc')
-rw-r--r-- | zsh/.zshrc | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,10 @@ +# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.config/zsh/.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 + # History HISTFILE=$ZDOTDIR/zsh_history HISTSIZE=1001 @@ -222,3 +229,7 @@ eval "$(zoxide init zsh)" # Sourcing for zsh source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh +source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme + +# To customize prompt, run `p10k configure` or edit ~/.config/zsh/.p10k.zsh. +[[ ! -f ~/.config/zsh/.p10k.zsh ]] || source ~/.config/zsh/.p10k.zsh |