[zsh] remove forced locale settings

This commit is contained in:
Dmytro Meleshko 2019-07-21 00:09:32 +03:00
parent 1f39fc8cff
commit 6fd9eecf6a
1 changed files with 1 additions and 6 deletions

View File

@ -1,11 +1,6 @@
#!/usr/bin/env zsh
export LANG="en_US.UTF-8"
export LC_ALL="$LANG"
if [[ -z "$USER" && -n "$USERNAME" ]]; then
export USER="$USERNAME"
fi
export USER="${USER:-$USERNAME}"
# find editor
export EDITOR="nvim"