Skip to content

Commit

Permalink
Make the colors for the prompt bold
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinmbell committed Dec 25, 2018
1 parent 02611ae commit 4326944
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@ complete -o default -o nospace -F _git_checkout gls

[ -e ~/.pythonrc ] && export PYTHONSTARTUP=~/.pythonrc

declare -r _RED="\[\033[00;31m\]" >& /dev/null
declare -r _GREEN="\[\033[00;32m\]" >& /dev/null
declare -r _BLUE="\[\033[00;34m\]" >& /dev/null
declare -r _GOLD="\[\033[00;33m\]" >& /dev/null
declare -r _RED="\[\033[01;31m\]" >& /dev/null #bold
declare -r _GREEN="\[\033[01;32m\]" >& /dev/null #bold
declare -r _BLUE="\[\033[01;34m\]" >& /dev/null #bold
declare -r _GOLD="\[\033[01;33m\]" >& /dev/null #bold
declare -r _WHITE="\[\033[00;37m\]" >& /dev/null
declare -r _NOCOLOR="\[\033[00;00m\]" >& /dev/null
declare -r _CLOSE_COLOR="\[\033[00m\]" >& /dev/null
Expand Down

0 comments on commit 4326944

Please sign in to comment.