We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97badb0 commit e7f6d79Copy full SHA for e7f6d79
.profile
@@ -10,6 +10,14 @@ export EDITOR=vim
10
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\]'
11
export ACK_PAGER='less -FRX'
12
13
+# locale
14
+OS=$(uname)
15
+if [ $OS == "Linux" ]; then
16
+ export LC_ALL="en_US.utf8"
17
+else
18
+ export LC_ALL="en_US.UTF-8"
19
+fi
20
+
21
# Use local bin before
22
export PATH=/usr/local/bin:/usr/local/sbin:$PATH
23
if [ -d ~/bin ] ; then
0 commit comments