mirror of
https://github.com/harish2704/neovim-konsole.git
synced 2026-09-10 04:41:08 +00:00
10 lines
177 B
Bash
Executable File
10 lines
177 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
appRoot=$(dirname $(readlink -f $0) );
|
|
|
|
# Disable Ctrl-S
|
|
stty stop '' -ixoff
|
|
|
|
# env VIMRUNTIME="$appRoot/runtime" "$appRoot/bin/nvim" $@
|
|
env /usr/bin/nvim $@
|