mirror of
https://github.com/elenapan/dotfiles.git
synced 2025-12-26 15:14:58 +08:00
Former-commit-id: 3e619a917c
Former-commit-id: 69e4e61cccff04b9f8ef2aadc6f2a05778bcbe63
Former-commit-id: 567798d52bc5cc3a0155bd7bfaa21ff7b7b88098
Former-commit-id: 95c814ad834fb3145eef88a68bde9af04f98bec9
16 lines
467 B
Bash
16 lines
467 B
Bash
# Minimal zsh theme
|
|
# Requires Nerd Fonts for the icons
|
|
|
|
# Configuration
|
|
num_dirs=2 # Use 0 for full path
|
|
truncated_path="%F{white}%$num_dirs~%f"
|
|
decoration="%F{red}%F{magenta}%F{cyan}%f"
|
|
background_jobs="%(1j.%F{green} %f.)"
|
|
non_zero_return_value="%(0?..%F{yellow} %f)"
|
|
|
|
# Left part of prompt
|
|
PROMPT='$truncated_path $decoration '
|
|
# Right part of prompt
|
|
RPROMPT='$background_jobs $non_zero_return_value'
|
|
# Input in bold
|
|
zle_highlight=(default:bold)
|