# {{ ansible_managed }} export ZSH_PLUGINS={{ zsh_plugins_path }} # 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 "$HOME/.cache/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then source "$HOME/.cache/p10k-instant-prompt-${(%):-%n}.zsh" fi # To customize prompt, run `p10k configure` or edit the following file. source {{ zsh_p10k_theme_config }} # Enable syntax highlighting for zsh source $ZSH_PLUGINS/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh # Enable autosuggestions source $ZSH_PLUGINS/zsh-autosuggestions/zsh-autosuggestions.zsh # Enable powerlevel10k theme source $ZSH_PLUGINS/powerlevel10k/powerlevel10k.zsh-theme export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=8' export PROMPT="%n@%m:%~$ "