5 lines
162 B
Bash
Executable file
5 lines
162 B
Bash
Executable file
#!/usr/bin/env bash
|
|
term=default-terminal-emulator
|
|
vim=$(command -v nvim) || vim=$(command -v vim)
|
|
|
|
exec $term -e $vim -c 'set mouse=a' "$@" &>/dev/null & disown
|