aboutsummaryrefslogtreecommitdiff
path: root/config/zsh/theme.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'config/zsh/theme.zsh')
-rw-r--r--config/zsh/theme.zsh4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/zsh/theme.zsh b/config/zsh/theme.zsh
index 9fc4fac..baeae3e 100644
--- a/config/zsh/theme.zsh
+++ b/config/zsh/theme.zsh
@@ -22,7 +22,7 @@ p_dir() {
# Prompt terminal status
p_status() {
- [[ ! -z "$WITH_NIX_PREFIX" ]] && echo -n "$(segment "[NIX:$WITH_NIX_PREFIX] " black $COL_STATUS_ERROR)";
+ [[ ! -z "$WITH_NIX_PREFIX" ]] && echo -n "$(segment "[NIX:$WITH_NIX_PREFIX] " black $COL_ACCENT)";
echo -n "%(?..$(segment 'x' black $COL_STATUS_ERROR))"
echo -n "%(1j.$(segment '(jobs: %j)' black $COL_STATUS_BG).)"
}
@@ -47,7 +47,7 @@ prompt() {
p_status;
p_dir;
echo -n '$(p_git)';
- segment "$" black white;
+ segment "λ" black white;
}
export PROMPT="$(prompt) ";