Skip to content

Instantly share code, notes, and snippets.

@Routhinator
Created November 26, 2025 21:45
Show Gist options
  • Select an option

  • Save Routhinator/285ed524d194a70c71b30cfe075115b3 to your computer and use it in GitHub Desktop.

Select an option

Save Routhinator/285ed524d194a70c71b30cfe075115b3 to your computer and use it in GitHub Desktop.
routhinator.zsh-theme
# Python Virtual Env
VIRTUAL_ENV_DISABLE_PROMPT=0
ZSH_THEME_VIRTUAL_ENV_PROMPT_PREFIX=" %{$fg[green]%}🐍 "
ZSH_THEME_VIRTUAL_ENV_PROMPT_SUFFIX="%{$reset_color%}"
ZSH_THEME_VIRTUALENV_PREFIX=$ZSH_THEME_VIRTUAL_ENV_PROMPT_PREFIX
ZSH_THEME_VIRTUALENV_SUFFIX=$ZSH_THEME_VIRTUAL_ENV_PROMPT_SUFFIX
# Git repo
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}["
ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}*%{$fg[green]%}"
ZSH_THEME_GIT_PROMPT_CLEAN=""
# Kubectl
ZSH_THEME_KUBE_PS1_SYMBOL_CUSTOM=k8s
setopt prompt_subst
PROMPT=$'
%{$fg_bold[green]%}%n@%m %{$fg[blue]%}%D{[%H:%M:%S]} %{$reset_color%}%{$fg[white]%}[%~]%{$reset_color%} $(git_prompt_info)\
%{$fg[blue]%}->%{$fg_bold[blue]%} %#%{$reset_color%} '
RPROMPT=$'$(kube_ps1) $(virtualenv_prompt_info)'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment