feat(zsh): add environment variables

* LANG
* LC_ALL
* EDITOR
This commit is contained in:
George Rawlinson 2021-07-08 17:52:38 +00:00
parent e8fecf3d6d
commit 68d0452536
Signed by: grawlinson
GPG Key ID: E0959FEA8B550539
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
#
# environment variables
#
export EDITOR="vim"
# locale
export LANG='en_NZ.UTF-8'
export LC_ALL='en_NZ.UTF-8'