get rid of nvim for now

This commit is contained in:
Von Random 2018-07-10 02:30:30 +03:00
parent 7c21d2da5c
commit b4dfe38b15
2 changed files with 3 additions and 3 deletions

View file

@ -7,7 +7,7 @@ typeset -a vimopts=(
)
case $1 in
-g) vimbin=$(command -v gvim);;
-n) vimbin=$(command -v nvim) || vimbin=$(command -v vim);;
-n) vimbin=$(command -v vim);;
*) vimbin=$(command -v tvim);;
esac
exec flock -w0 "$index" "$vimbin" "${vimopts[@]}"