~xdavidwu/dotfiles

02909cfe5feb46f5dff1ed432ff2c17b93b167a7 — xdavidwu 2 years ago 6eb255b
bash: prefer nvim for various variables
1 files changed, 6 insertions(+), 1 deletions(-)

M .bash_profile
M .bash_profile => .bash_profile +6 -1
@@ 42,7 42,12 @@ export ABDUCO_SOCKET_DIR="$XDG_DATA_HOME"
[ -f /usr/bin/vimpager ] && export PAGER=vimpager
export LESS='-S -R'
export LESSHISTFILE=-
export EDITOR=vim
if [ -f /usr/bin/nvim ]; then
	export EDITOR=nvim
	export VIMPAGER_VIM=nvim
else
	export EDITOR=vim
fi
export DVTM_PAGER=less
export ABDUCO_CMD="dvtm -M"
export GDK_BACKEND=wayland