aboutsummaryrefslogtreecommitdiff
path: root/config/zsh/theme.zsh
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2025-08-10 17:09:58 +0530
committerAkshay Nair <phenax5@gmail.com>2025-08-10 17:09:58 +0530
commit973492cbbb1172f6db80ae51e52f53bf34c625ae (patch)
treeb7c295bc03caba69b40d7f53d32c63dfc9b0fb3d /config/zsh/theme.zsh
parent26343d2eef0e8892cecb1645935294e221e9f1a7 (diff)
downloadnixos-config-973492cbbb1172f6db80ae51e52f53bf34c625ae.tar.gz
nixos-config-973492cbbb1172f6db80ae51e52f53bf34c625ae.zip
Theme change
Diffstat (limited to '')
-rw-r--r--config/zsh/theme.zsh8
1 files changed, 5 insertions, 3 deletions
diff --git a/config/zsh/theme.zsh b/config/zsh/theme.zsh
index c6341df..e2f476b 100644
--- a/config/zsh/theme.zsh
+++ b/config/zsh/theme.zsh
@@ -1,7 +1,9 @@
setopt prompt_subst
+autoload -U colors && colors
+
# Theme
-COL_ACCENT=13;
+COL_ACCENT="#007070";
COL_DIR=$COL_ACCENT;
@@ -17,7 +19,7 @@ git_changes() { git status --porcelain 2> /dev/null | wc -l; }
# Prompt dir
p_dir() {
- segment "%2~" $COL_DIR white;
+ segment "%2~" $COL_DIR brightwhite;
}
# Prompt terminal status
@@ -47,7 +49,7 @@ prompt() {
p_status;
p_dir;
echo -n '$(p_git)';
- segment "󱄅" black 13;
+ segment "󱄅" black "$COL_ACCENT";
}
export PROMPT="$(prompt) ";