blob: b9fa7aa58888e591db6873623b359172a31213e6 [file] [log] [blame]
Robert R Evansa4d02422010-10-02 15:07:29 -07001#!/bin/bash
Robert R Evans70c3b522010-10-03 11:50:22 -07002
Robert R Evansb64c2282010-10-07 17:15:14 -07003
4PROMPT="${bold_blue}\[\$(prompt_char)\]\[\$(git_prompt_info)\] ${orange}\h ${reset_color}in ${green}\w ${reset_color}\[→ "
5
Robert R Evansb64c2282010-10-07 17:15:14 -07006# git theming
7GIT_THEME_PROMPT_DIRTY=" ${red}✗"
8GIT_THEME_PROMPT_CLEAN=" ${bold_green}✓"
9GIT_THEME_PROMPT_PREFIX=" ${green}|"
10GIT_THEME_PROMPT_SUFFIX="${green}|"
11
Rich Manalang63d5e7b2010-10-07 13:19:53 -070012
13#added TITLEBAR for updating the tab and window titles with the pwd
14case $TERM in
15 xterm*)
16 TITLEBAR='\[\033]0;\w\007\]'
17 ;;
18 *)
19 TITLEBAR=""
20 ;;
Robert R Evansb64c2282010-10-07 17:15:14 -070021esac