From 9c03547485a85dde41f973f5255a4a79760eaac3 Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Fri, 24 Jul 2020 09:59:34 +0200 Subject: [PATCH] Change vim path --- dotfiles/bash/profile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotfiles/bash/profile b/dotfiles/bash/profile index 2107cc6..d1547d4 100644 --- a/dotfiles/bash/profile +++ b/dotfiles/bash/profile @@ -3,8 +3,8 @@ [[ -f ~/.bashrc ]] && . ~/.bashrc -if [ -x /bin/vim ]; then - export EDITOR="/bin/vim" +if [ -x /usr/bin/vim ]; then + export EDITOR="/usr/bin/vim" fi export PATH="$HOME/.cargo/bin:$PATH"