Skip to content

Commit

Permalink
add locale
Browse files Browse the repository at this point in the history
  • Loading branch information
tarmolov committed Mar 20, 2014
1 parent 97badb0 commit e7f6d79
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .profile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ export EDITOR=vim
export PS1='\[\e[0;32m\]\u@\h\[\e[m\] \[\e[1;34m\]\w\[\e[m\]\[\e[1;32m\]$(__git_ps1 " (%s)") \$\[\e[m\] \[\e[1;37m\]'
export ACK_PAGER='less -FRX'

# locale
OS=$(uname)
if [ $OS == "Linux" ]; then
export LC_ALL="en_US.utf8"
else
export LC_ALL="en_US.UTF-8"
fi

# Use local bin before
export PATH=/usr/local/bin:/usr/local/sbin:$PATH
if [ -d ~/bin ] ; then
Expand Down

0 comments on commit e7f6d79

Please sign in to comment.