Fixed coloring that breaks my bash linebreaks and stuff

This commit is contained in:
Peter Liljenberg 2014-01-23 10:16:57 +01:00
parent 3e845f379e
commit 7a8febbb9e

View File

@ -30,14 +30,14 @@ if [ -n "${BASH_VERSION}" ]; then
: ${use_color_off:=false}
# Colors
: ${on='\033[0;37m'}
: ${off='\033[1;30m'}
: ${red='\033[0;31m'}
: ${green='\033[0;32m'}
: ${yellow='\033[0;33m'}
: ${violet='\033[0;35m'}
: ${branch_color='\033[0;34m'}
: ${reset='\033[0m'}
: ${on='\[\033[1;37m\]'}
: ${off='\[\033[0m\]'}
: ${red='\[\033[0;31m\]'}
: ${green='\[\033[0;32m\]'}
: ${yellow='\[\033[1;33m\]'}
: ${violet='\[\033[0;35m\]'}
: ${branch_color='\[\033[1;34m\]'}
: ${reset='\[\033[0m\]'}
PS2="${yellow}${reset} "