10 lines
173 B
Bash
Executable file
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' "$@"
|