From 6958f1ea95b213ebbe384d262495c96d2df25d05 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Thu, 12 Jan 2023 13:46:20 -0600 Subject: [PATCH] lvim is dead long live astronvim --- lib/env.zsh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/env.zsh b/lib/env.zsh index 4671fe7..92056eb 100755 --- a/lib/env.zsh +++ b/lib/env.zsh @@ -26,9 +26,7 @@ unsetopt autocd # export VIMINIT='source $MYVIMRC' # export MYVIMRC='$DOTFILES_DIR/lib/.vimrc' -if is-executable lvim; then - export EDITOR=lvim -elif is-executable nvim; then +if is-executable nvim; then export EDITOR=nvim else export EDITOR=vim