diff options
Diffstat (limited to '.local')
-rw-r--r-- | .local/share/oh-my-zsh/themes/loek.zsh-theme | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.local/share/oh-my-zsh/themes/loek.zsh-theme b/.local/share/oh-my-zsh/themes/loek.zsh-theme new file mode 100644 index 0000000..e8b1438 --- /dev/null +++ b/.local/share/oh-my-zsh/themes/loek.zsh-theme @@ -0,0 +1,12 @@ +USER="" +if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then + USER=" %m" +fi + +PROMPT='%{$fg[yellow]%}λ$USER %{$fg[green]%}%c %{$fg[yellow]%}-> $(git_prompt_info)$(hg_prompt_info)%{$reset_color%}' + +ZSH_THEME_GIT_PROMPT_PREFIX="λ %{$fg[blue]%}git %{$fg[red]%}" +ZSH_THEME_GIT_PROMPT_SUFFIX="%{$fg[yellow]%} -> %{$reset_color%}" +ZSH_THEME_HG_PROMPT_PREFIX="λ %{$fg[blue]%}hg %{$fg[red]%}" +ZSH_THEME_HG_PROMPT_SUFFIX="%{$fg[yellow]%} -> %{$reset_color%}" + |