This commit is contained in:
Jarosław Konik 2025-04-15 20:06:02 +02:00
parent d3d5a19ddf
commit 2fb8821172
2 changed files with 6 additions and 1 deletions

View file

@ -3,3 +3,4 @@ theme = Kanagawa Dragon
mouse-hide-while-typing = true
minimum-contrast = 1.1
font-size = 14
command = /usr/local/bin/tmux

View file

@ -11,7 +11,11 @@ nvr_git () {
local servername=/tmp/nvr$(echo $main_module_repo_path | tr "/" "_")
nvr -s --servername $servername "$@"
else
if test -f /usr/bin/nvim; then
/usr/bin/nvim "$@"
else
/usr/local/bin/nvim "$@"
fi
fi
}
nvr_git $@