8 lines
100 B
Bash
Executable file
8 lines
100 B
Bash
Executable file
#!/bin/sh
|
|
|
|
export TERM=xterm-256color
|
|
if [ -n "`which nvim`" ]; then
|
|
nvim "$@"
|
|
else
|
|
vim "$@"
|
|
fi
|