mirror of
https://github.com/harish2704/neovim-konsole.git
synced 2026-09-10 04:41:08 +00:00
12 lines
258 B
Bash
Executable File
12 lines
258 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
thisFile=$(readlink -f $0);
|
|
appDir="$(dirname $thisFile)/..";
|
|
|
|
# Disable Ctrl-S
|
|
stty stop '' -ixoff
|
|
|
|
unset VTE_VERSION;
|
|
konsole --nofork --dograb --hide-tabbar --hide-menubar --profile nvim -e /usr/bin/nvim "$@" &
|
|
# konsole --profile nvim
|