diff options
| author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-06-22 13:32:26 +0200 |
|---|---|---|
| committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-06-22 13:32:26 +0200 |
| commit | 96de02a94730bdaa2f5ac4131e391155f779cf61 (patch) | |
| tree | 64ae2dded0901d61c96d8dd07a22d0aef09dffe8 | |
| parent | 26b9cd31c056d713cf6e3a41bb7a6029edc3a589 (diff) | |
use EDITOR instead of vim
| -rw-r--r-- | config/essentials/zsh/functions.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/essentials/zsh/functions.zsh b/config/essentials/zsh/functions.zsh index eefc2ce..57e48dd 100644 --- a/config/essentials/zsh/functions.zsh +++ b/config/essentials/zsh/functions.zsh @@ -29,7 +29,7 @@ nvf() { fi if test -f "$match" then - vim "$match" && return + $EDITOR "$match" && return else die "no match." && return 1 fi |
