aboutsummaryrefslogtreecommitdiffstats
path: root/.bash_profile
diff options
context:
space:
mode:
Diffstat (limited to '.bash_profile')
-rw-r--r--.bash_profile4
1 files changed, 0 insertions, 4 deletions
diff --git a/.bash_profile b/.bash_profile
index 505d6d4..7eacfc8 100644
--- a/.bash_profile
+++ b/.bash_profile
@@ -25,10 +25,6 @@ for option in autocd globstar; do
shopt -s "$option" 2> /dev/null
done
-# 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