vscripts/tvim

11 lines
173 B
Text
Raw Normal View History

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