aboutsummaryrefslogtreecommitdiffstats
path: root/.bash_profile
diff options
context:
space:
mode:
authorMathias Bynens <mathias@qiwi.be>2011-10-22 13:01:08 +0300
committerMathias Bynens <mathias@qiwi.be>2011-10-22 13:01:08 +0300
commit5d7bc000a5ffa21d813f6c740a5a2a9b8cf53e74 (patch)
treef863cfd46dd041325d6393b431bd39e22157b9a5 /.bash_profile
parent73269b457f0ed29c7a9eb5cc2ce8c384078effc4 (diff)
downloaddotfiles-5d7bc000a5ffa21d813f6c740a5a2a9b8cf53e74.tar.gz
dotfiles-5d7bc000a5ffa21d813f6c740a5a2a9b8cf53e74.tar.bz2
dotfiles-5d7bc000a5ffa21d813f6c740a5a2a9b8cf53e74.zip
Prefer US English and use UTF-8.
Diffstat (limited to '.bash_profile')
-rwxr-xr-x.bash_profile4
1 files changed, 4 insertions, 0 deletions
diff --git a/.bash_profile b/.bash_profile
index 28a1166..43b083d 100755
--- a/.bash_profile
+++ b/.bash_profile
@@ -8,6 +8,10 @@ unset file
# Case-insensitive globbing (used in pathname expansion)
shopt -s nocaseglob
+# Prefer US English and use UTF-8
+export LC_ALL='en_US.UTF-8'
+export LANG='en_US'
+
# Add tab completion for SSH hostnames based on ~/.ssh/config, ignoring wildcards
[ -e "$HOME/.ssh/config" ] && complete -o "default" -o "nospace" -W "$(grep "^Host" ~/.ssh/config | grep -v "[?*]" | cut -d " " -f2)" scp sftp ssh