dotfiles.2022/_home/dot_sz.shrc.d/21_aliases
Lockszmith 86608fbc83 Major cleanup and testing added
+ added: bin/sz-doctor.sh shell script
+ fixed: chezmoi external configuration moved to _home
+ fixed: vi/vim/nvim aliases
+ fixed: bash_completion testsing
2022-05-29 01:46:21 +00:00

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"