vscripts/tvim
2017-02-07 19:59:29 +03:00

10 lines
173 B
Bash
Executable file

#!/usr/bin/env bash
term=default-terminal-emulator
vim=vim
#if [[ -x $(type -P nvim) ]]; then
# vim=nvim
#else
# vim=vim
#fi
exec $term -e $vim -c 'set mouse=a' "$@"