vscripts/tvim
2018-06-29 16:58:43 +03:00

5 lines
180 B
Bash
Executable file

#!/usr/bin/env bash
TERM=$(command -v default-terminal-emulator)
VIM=$(command -v nvim) || VIM=$(command -v vim)
exec "$TERM" -e "$VIM" -c 'set mouse=a' "$@" &>/dev/null & disown