Move language env to top

This commit is contained in:
Jan Jastrow 2022-02-20 17:38:32 +01:00
parent 3a2aee7681
commit 73c570d598
1 changed files with 6 additions and 6 deletions

12
zsh/env
View File

@ -2,6 +2,12 @@
# filename: /zsh/env
#--------------------------------
# set language
export LANGUAGE=en_US.UTF-8
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
export LC_TYPE=en_US.UTF-8
# set default editor
export EDITOR="nano"
@ -14,12 +20,6 @@ if [[ -x `which /usr/local/bin/lsd` || -x `which /opt/homebrew/bin/lsd` ]]; then
alias ll=lsd
fi
# set language
export LANGUAGE=en_US.UTF-8
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
export LC_TYPE=en_US.UTF-8
#
# Path additions
#