rc: don't override sytem LANG & TZ

TZ is now $(date +%Z) for sending over SSH. LANG should be in system
settings and of course both can be overridden e.g.g in `.custom`.
This commit is contained in:
Aminda Suomalainen 2015-09-12 12:07:40 +03:00
parent c42ae8eb43
commit 643119d972
3 changed files with 8 additions and 11 deletions

View File

@ -1,5 +1 @@
export EDITOR=vim # MIKAELA_GREP MIKAELA_GREPENVIRONMENT
export LANG=fi_FI.UTF-8 # MIKAELA_GREP # MIKAELA_GREPENVIRONMENT
export TZ="Europe/Helsinki" # MIKAELA_GREP #MIKAELA_GREPENVIRONMENT

View File

@ -179,11 +179,12 @@ fi
# Sets the default editor. I am vim user, so I want it to be vim. If you don't like terminal based text editors, change "" to gedit (Gnome) or Kate (KDE).
#export EDITOR=vim # MIKAELA_GREP MIKAELA_GREP_ENVIRONMENT
# Sets locale. You can get list of locales with "locale -a" command. This should be something which ends to .utf8
#export LANG=fi_FI.UTF-8 # MIKAELA_GREP # MIKAELA_GREP_ENVIRONMENT
# Sets locale. You can get list of locales with "locale -a" command. This
# should be something which ends to .utf8
#export LANG=fi_FI.UTF-8
# Sets your timezone. Set in format <Region/City>, or just timezone like UTC.
#export TZ="Europe/Helsinki" # MIKAELA_GREP #MIKAELA_GREP_ENVIRONMENT
# Set TZ to local timezone for sending over SSH
TZ=$(date +%Z)
# Sets PATH. To add another path, add :</path/to/new/path> to string below.
PATH=$HOME/.local/bin:$HOME/.local/sbin:$HOME/.local/games:$HOME/.linuxbrew/bin:$HOME/.linuxbrew/sbin:$HOME/.linuxbrew/games:$HOME/bin:$HOME/sbin:$HOME/games:/usr/local/bin:/usr/local/sbin:/usr/local/games:/usr/bin:/usr/sbin:/usr/games:/bin:/sbin:/games:$PATH

View File

@ -144,10 +144,10 @@ fi
#export EDITOR=vim # MIKAELA_GREP # MIKAELA_GREP_ENVIRONMENT
# Sets locale. You can get list of locales with "locale -a" command. This should be something which ends to .utf8
#export LANG=fi_FI.UTF-8 # MIKAELA_GREP # MIKAELA_GREP_ENVIRONMENT
#export LANG=fi_FI.UTF-8
# Sets your timezone. Set in format <Region/City>, or just timezone like UTC.
# export TZ="Europe/Helsinki" # MIKAELA_GREP # MIKAELA_GREP_ENVIRONMENT
# Set TZ to local timezone for sending over SSH
TZ=$(date +%Z)
# Sets PATH. To add another path, add :</path/to/new/path> to string below.
PATH=$HOME/.local/bin:$HOME/.local/sbin:$HOME/.local/games:$HOME/.linuxbrew/bin:$HOME/.linuxbrew/sbin:$HOME/.linuxbrew/games:$HOME/bin:$HOME/sbin:$HOME/games:/usr/local/bin:/usr/local/sbin:/usr/local/games:/usr/bin:/usr/sbin:/usr/games:/bin:/sbin:/games:$PATH