diff --git a/custom/themes/edisaac.zsh-theme b/custom/themes/edisaac.zsh-theme new file mode 100644 index 000000000..4a397ce97 --- /dev/null +++ b/custom/themes/edisaac.zsh-theme @@ -0,0 +1,46 @@ +# user, host, full path, and time/date +# on two lines for easier vgrepping +# entry in a nice long thread on the Arch Linux forums: http://bbs.archlinux.org/viewtopic.php?pid=521888#p521888 +source /home/emejia/utec/ide/zsh-git-prompt/zshrc.sh +GIT_PROMPT_EXECUTABLE="haskell" + +function hg_prompt_info { + hg prompt --angle-brackets "\ +%{$reset_color%}><:%{$fg[magenta]%}%{$reset_color%}>\ +%{$reset_color%}>\ +%{$fg[red]%}%{$reset_color%}< +patches: >" 2>/dev/null +} + +ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[cyan]%}+" +ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[yellow]%}✱" +ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%}✗" +ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[blue]%}➦" +ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[magenta]%}✂" +ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[blue]%}✈" +ZSH_THEME_GIT_PROMPT_SHA_BEFORE=" %{$fg[blue]%}" +ZSH_THEME_GIT_PROMPT_SHA_AFTER="%{$reset_color%}" + +function mygit() { + if [[ "$(git config --get oh-my-zsh.hide-status)" != "1" ]]; then + ref=$(command git symbolic-ref HEAD 2> /dev/null) || \ + ref=$(command git rev-parse --short HEAD 2> /dev/null) || return + echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$(git_prompt_short_sha)$(git_prompt_status)$ZSH_THEME_GIT_PROMPT_SUFFIX " + fi +} + +COLOR_ROOT="%{$fg_bold[green]%}" + +function getruta() {echo "%{$fg_bold[grey]%}[%~]%{$reset_color%}"} +function getrutalength() {echo "[%{$fg_bold[grey]%}%30>...>%~%>>]%{$reset_color%}"} +function getusername(){echo "%{$fg[green]%}%n%b%{$fg[cyan]%}@%{$fg[magenta]%}%m%{$reset_color%}"} +function gettime(){echo "%b%{$fg[yellow]%}%D{"%I:%M:%S"}%b%{$reset_color%}"} +function dirpwd() {echo "%{$fg_bold[blue]%}%1~%{$reset_color%}"} +# alternate prompt with git & hg +PROMPT=$' +$COLOR_ROOT┌─ $(dirpwd) $(getruta) +$COLOR_ROOT| +$COLOR_ROOT└─>%{$reset_color%} $(git_super_status)$ ' +PS2=$' \e[0;34m%}%B>%{\e[0m%}%b ' + +RPROMPT='$(getusername)' \ No newline at end of file