From f014436885504660c6c3e3997428505ccc08cf17 Mon Sep 17 00:00:00 2001 From: Buddy Sandidge Date: Tue, 31 Jan 2023 13:06:53 -0800 Subject: [PATCH] Add vim alias to nvim --- base/.config/profile/profile.d/base.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/base/.config/profile/profile.d/base.sh b/base/.config/profile/profile.d/base.sh index 963494c..2a4db79 100644 --- a/base/.config/profile/profile.d/base.sh +++ b/base/.config/profile/profile.d/base.sh @@ -4,6 +4,7 @@ alias slugify="sed -e 's/[^[:alnum:]]/-/g' | tr -s '-' | tr A-Z a-z" if type nvim >/dev/null 2>/dev/null ; then export EDITOR=nvim + alias vim=nvim else export EDITOR=vim fi