Last active
December 23, 2016 22:09
-
-
Save freaz/1b6ab3eddebd5a3e5f26ed4338c977a0 to your computer and use it in GitHub Desktop.
My Zsh theme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### GIT | |
ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg_bold[blue]%}git:(%{$fg[red]%}" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="" | |
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%})%{$fg[red]%}" | |
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})%{$reset_color%}" | |
### NVM | |
ZSH_THEME_NVM_PROMPT_PREFIX="node:(" | |
ZSH_THEME_NVM_PROMPT_SUFFIX=")" | |
function nvm_info() { | |
echo "node:($(node --version | sed -e 's/v//'), $(npm --version))" | |
} | |
### RBENV | |
function ruby_version() { | |
echo "ruby:($(rbenv version | sed -e "s/ (set.*$//"))" | |
} | |
### HEROKU | |
local heroku_cmd=/usr/local/bin/heroku | |
function heroku_active_account() { | |
echo "heroku:($($heroku_cmd accounts | sed -n '/^\*.*/p' | sed -e 's/^\* //'))" | |
} | |
function show_datetime() { | |
echo "%{$fg_bold[green]%}[$(date +%Y-%m-%dT%H:%M:%S)]%{$reset_color%}" | |
} | |
PROMPT='$(show_datetime) %{$fg[cyan]%}%c%{$reset_color%}$(git_prompt_info) %B$%b%{$reset_color%} ' | |
RPROMPT='$(nvm_info) $(ruby_version) $(heroku_active_account)' |
Author
freaz
commented
Sep 30, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment