mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-22 11:19:22 +01:00
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:
parent
c42ae8eb43
commit
643119d972
@ -1,5 +1 @@
|
|||||||
export EDITOR=vim # MIKAELA_GREP MIKAELA_GREPENVIRONMENT
|
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
|
|
||||||
|
@ -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).
|
# 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
|
#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
|
# Sets locale. You can get list of locales with "locale -a" command. This
|
||||||
#export LANG=fi_FI.UTF-8 # MIKAELA_GREP # MIKAELA_GREP_ENVIRONMENT
|
# 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.
|
# Set TZ to local timezone for sending over SSH
|
||||||
#export TZ="Europe/Helsinki" # MIKAELA_GREP #MIKAELA_GREP_ENVIRONMENT
|
TZ=$(date +%Z)
|
||||||
|
|
||||||
# Sets PATH. To add another path, add :</path/to/new/path> to string below.
|
# 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
|
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
|
||||||
|
6
rc/zshrc
6
rc/zshrc
@ -144,10 +144,10 @@ fi
|
|||||||
#export EDITOR=vim # MIKAELA_GREP # MIKAELA_GREP_ENVIRONMENT
|
#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
|
# 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.
|
# Set TZ to local timezone for sending over SSH
|
||||||
# export TZ="Europe/Helsinki" # MIKAELA_GREP # MIKAELA_GREP_ENVIRONMENT
|
TZ=$(date +%Z)
|
||||||
|
|
||||||
# Sets PATH. To add another path, add :</path/to/new/path> to string below.
|
# 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
|
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
|
||||||
|
Loading…
Reference in New Issue
Block a user