vscripts/tvim

6 lines
162 B
Text
Raw Normal View History

#!/usr/bin/env bash
term=default-terminal-emulator
2018-06-19 17:21:27 +03:00
vim=$(command -v nvim) || vim=$(command -v vim)
2017-04-10 11:44:52 +03:00
exec $term -e $vim -c 'set mouse=a' "$@" &>/dev/null & disown