Zsh: Fix TERM

This commit is contained in:
the_4n0nym0u53 2022-02-05 16:12:35 +01:00
parent 46ee3f8206
commit 97a4351f0c
No known key found for this signature in database
GPG Key ID: 35EE09F5481049BB
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ export PATH="$PATH:$HOME/.local/bin"
&& [[ $(lsb_release -si) != "Debian" ]] \
&& [[ $(lsb_release -si) != "Ubuntu" ]] \
&& export LANG="en_DK.UTF-8" \
|| export LANG="en_US.UTF-8"
|| export LANG="en_US.UTF-8" && export TERM="xterm-256color"
export PAGER="less"
export EDITOR="nano"
(( ${+commands[vim]} )) && export EDITOR="vim"