Add script “evolution-nvim”

Add the script “evolution-nvim.sh” to use Neovim as external editor for
Evolution.
This commit is contained in:
coderkun 2020-07-04 13:40:25 +02:00
commit 0b764e13e1

9
evolution-nvim.sh Executable file
View file

@ -0,0 +1,9 @@
#!/bin/sh
if [ $# -ge 2 ]; then
CMD="nvim $2 -c \"$1\""
else
CMD="nvim $1"
fi
exec termite -e "${CMD}"