
+ added: bin/sz-doctor.sh shell script + fixed: chezmoi external configuration moved to _home + fixed: vi/vim/nvim aliases + fixed: bash_completion testsing
22 lines
485 B
Text
22 lines
485 B
Text
alias sudo="/usr/bin/sudo "
|
|
PREFERED_VI=$(type -fP nvim vim | head -1)
|
|
if [[ -z "$PREFERED_VI" ]]; then
|
|
PREFERED_VI=$(type -fP vi | head -1)
|
|
|
|
if [[ -z "$PREFERED_VI" ]]; then
|
|
alias vi_editor='eval $EDITOR '
|
|
else
|
|
alias vi_editor="$PREFERED_VI "
|
|
fi
|
|
else
|
|
alias vi_editor="$PREFERED_VI -p "
|
|
fi
|
|
alias nvim="vi_editor "
|
|
alias vim="vi_editor "
|
|
alias vi="vi_editor "
|
|
|
|
alias lessr="less --raw-control-chars "
|
|
|
|
alias ed="nvim "
|
|
|
|
alias sz-edshrc="ed ~/.sz.shrc.d ; exec $SHELL"
|