commit fee9418f804434569cd6f4c029182040fc57833e
parent 092ac432d31c09214aab7fdd2dd7e1480e933b8d
Author: Alex Balgavy <a.balgavy@gmail.com>
Date: Sun, 19 Jan 2020 13:27:08 +0100
profile: conditional rbenv init, some extra locale env vars
Former-commit-id: cf2a1a80493438fe1c5fbe5d82af71fa82cc91a1
Diffstat:
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/shell/profile b/shell/profile
@@ -44,6 +44,9 @@ fi
if [ -d "/usr/local/sbin" ]; then
PATH="/usr/local/sbin:$PATH"
fi
+if command -v rbenv &>/dev/null; then
+ eval "$(rbenv init -)"
+fi
export DOTFILES="$HOME/.dotfiles"
export EDITOR="`which vim`"
@@ -53,3 +56,8 @@ if command -v bat &> /dev/null; then
else
export PAGER="less -R"
fi
+export LC_NUMERIC=en_US.UTF-8
+export LC_TIME=en_US.UTF-8
+export LC_COLLATE=en_US.UTF-8
+export LC_MONETARY=en_US.UTF-8
+export LC_MESSAGES=en_US.UTF-8