Files
dotfiles/config/shell/.config/zsh/conf.d/50-prompt.zsh
T
2026-03-26 07:35:16 +01:00

8 lines
271 B
Bash

# Fallback prompt (if oh-my-posh is not available)
PROMPT='%F{blue}%n@%m%f %F{cyan}%~%f > '
# oh-my-posh
if [[ -f "$HOME/.config/posh_theme.omp.json" ]] && (( $+commands[oh-my-posh] )); then
eval "$(oh-my-posh init zsh --config "$HOME/.config/posh_theme.omp.json")"
fi