diff options
author | ZachIR <zachir@librem.one> | 2025-04-25 19:16:37 -0500 |
---|---|---|
committer | ZachIR <zachir@librem.one> | 2025-04-25 19:16:37 -0500 |
commit | 9ca0fcebf70babcaa9caf87ce313540ba3567546 (patch) | |
tree | 68b8d5eac8f4428d9f81953002d3bd71d8acf0fd /zsh | |
parent | c7373b980589d7a5ea795b0dfd750a01a83718bb (diff) |
Update theming with EC0101 red
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/zshrc | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -44,9 +44,13 @@ bindkey "${key[End]}" end-of-line bindkey "${key[PageUp]}" history-substring-search-up bindkey "${key[PageDown]}" history-substring-search-down -MYPROMPT=$'%S%F{002}[%n@%m]\UE0B2%F{015}%s%~%S%F{002}\UE0B0%#%s\UE0B0%f ' +if (env | grep -Fq 'DISTROBOX'); then + MYPROMPT=$'%F{000}%K{004}[%n@%m]%F{015}\UE0B2%K{015}%F{000}%~%F{015}%K{004}\UE0B0%F{000}%#%F{004}%k\UE0B0%f ' +else + MYPROMPT=$'%F{015}%K{009}[%n@%m]%F{015}\UE0B2%K{015}%F{000}%~%F{015}%K{009}\UE0B0%F{015}%#%F{009}%k\UE0B0%f ' +fi function zle-line-init zle-keymap-select { - VIM_PROMPT=$'%S%F{012}[%n@%m]\UE0B2%F{015}%s%~%S%F{012}\UE0B0%#%s\UE0B0%f ' + VIM_PROMPT=$'%F{000}%K{012}[%n@%m]%F{015}\UE0B2%K{015}%F{000}%~%F{015}%K{012}\UE0B0%F{000}%#%F{012}%k\UE0B0%f ' PS1="${${KEYMAP/vicmd/$VIM_PROMPT}/main/$MYPROMPT}" zle reset-prompt } |