aboutsummaryrefslogtreecommitdiffstats
path: root/.bash_profile
diff options
context:
space:
mode:
authorMathias Bynens <mathias@qiwi.be>2011-10-22 13:01:35 +0300
committerMathias Bynens <mathias@qiwi.be>2011-10-22 13:01:35 +0300
commitba8d75189cdd41647082db7fc93c3695a49d2ac2 (patch)
treea5011d6668e84c1052b46fcbb733d6ffda1041ab /.bash_profile
parent5d7bc000a5ffa21d813f6c740a5a2a9b8cf53e74 (diff)
downloaddotfiles-ba8d75189cdd41647082db7fc93c3695a49d2ac2.tar.gz
dotfiles-ba8d75189cdd41647082db7fc93c3695a49d2ac2.tar.bz2
dotfiles-ba8d75189cdd41647082db7fc93c3695a49d2ac2.zip
Use double quotes more consistently.
Diffstat (limited to '.bash_profile')
-rwxr-xr-x.bash_profile4
1 files changed, 2 insertions, 2 deletions
diff --git a/.bash_profile b/.bash_profile
index 43b083d..f376b4b 100755
--- a/.bash_profile
+++ b/.bash_profile
@@ -9,8 +9,8 @@ unset file
shopt -s nocaseglob
# Prefer US English and use UTF-8
-export LC_ALL='en_US.UTF-8'
-export LANG='en_US'
+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