Skip to content

Instantly share code, notes, and snippets.

@abs
Created August 24, 2023 19:58
Show Gist options
  • Save abs/b020bd219ece025de9930145c5ed0257 to your computer and use it in GitHub Desktop.
Save abs/b020bd219ece025de9930145c5ed0257 to your computer and use it in GitHub Desktop.
crcandy-nix.zsh-theme
nix_prompt_info=""
if [[ -n "$IN_NIX_SHELL" ]]; then
nix_prompt_info=" (nix)"
fi
PROMPT=$'
%{$fg_bold[green]%}%n@%m %{$fg[blue]%}%D{[%H:%M:%S]} %{$reset_color%}%{$fg[white]%}[%~]%{$reset_color%} $(git_prompt_info)$nix_prompt_info\
%{$fg[blue]%}->%{$fg_bold[blue]%} %#%{$reset_color%} '
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=""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment