config/shell: fix default editor

This commit is contained in:
xerus2000 2020-11-13 12:04:43 +01:00
parent 81cf937da7
commit 491c1b1faa
2 changed files with 2 additions and 6 deletions

View File

@ -20,7 +20,7 @@ alias editenv='sudoedit /etc/environment'
editright() {
test ! -f "$1" && mkdir -p $(dirname "$1") || sudo mkdir -p $(dirname "$1")
echo "Editing $1..."
test -O "$1" && $EDITOR "$1" || sudoedit "$1"
(test -O "$1" || (test ! -f "$1" && test -O $(dirname "$1"))) && $EDITOR "$1" || sudoedit "$1"
}
# Underline arg

View File

@ -164,11 +164,7 @@ alias zln='noglob zmv -L'
alias zsy='noglob zmv -Ls'
# Preferred editor for local and remote sessions
if [[ -n $SSH_CONNECTION ]]; then
export EDITOR='vim'
else
export EDITOR='nvim'
fi
which nvim >/dev/null && export EDITOR='nvim' || export EDITOR='vim'
for file in $CONFIG_SHELLS/*; do source $file; done