[UPDATE] zsh config i think im done for now lol

This commit is contained in:
Daveanand Mannie
2025-03-30 19:46:39 -04:00
parent 3c4e588b0a
commit c9f2f06f95
2 changed files with 5 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ GREY="#303030"
VIOLET="#d183e8"
BLACK='#080808'
CURRENT_BG='NONE'
SUPER_USER_COLOUR='#f968f7'
SUPER_USER_COLOUR='#970000'
USER_COLOUR='#5d009f'
if [[ -z "$PRIMARY_FG" ]]; then
PRIMARY_FG=$VIOLET
@@ -121,7 +121,7 @@ prompt_status() {
# Display current virtual environment
prompt_virtualenv() {
if [[ -n $VIRTUAL_ENV ]]; then
color=cyan
color='#035909'
prompt_segment $color $PRIMARY_FG
print -Pn " $(basename $VIRTUAL_ENV) "
fi