|
| 1 | +# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc. |
| 2 | +# Initialization code that may require console input (password prompts, [y/n] |
| 3 | +# confirmations, etc.) must go above this block; everything else may go below. |
| 4 | +if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then |
| 5 | + source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" |
| 6 | +fi |
| 7 | + |
1 | 8 | # load custom executable functions |
2 | 9 | for function in ~/.zsh/functions/*; do |
3 | 10 | source $function |
@@ -57,7 +64,7 @@ export ZSH="$HOME/.oh-my-zsh" |
57 | 64 | # load a random theme each time oh-my-zsh is loaded, in which case, |
58 | 65 | # to know which specific one was loaded, run: echo $RANDOM_THEME |
59 | 66 | # See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes |
60 | | -ZSH_THEME="Jonathan" |
| 67 | +ZSH_THEME="powerlevel10k/powerlevel10k" |
61 | 68 |
|
62 | 69 | # Set list of themes to pick from when loading at random |
63 | 70 | # Setting this variable when ZSH_THEME=random will cause zsh to load |
@@ -218,3 +225,6 @@ export PATH="$HOME/.antigravity/antigravity/bin:$PATH" |
218 | 225 | # Claude Status Bar Monitor |
219 | 226 | alias cs='claude-statusbar' |
220 | 227 | alias cstatus='claude-statusbar' |
| 228 | + |
| 229 | +# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. |
| 230 | +[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh |
0 commit comments