From 2fb8821172dd1f3d01b891aae38ddb08d954b16a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaros=C5=82aw=20Konik?= Date: Tue, 15 Apr 2025 20:06:02 +0200 Subject: [PATCH] update --- ghostty | 1 + nvr_git | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ghostty b/ghostty index b8046e1..7cd06fa 100644 --- a/ghostty +++ b/ghostty @@ -3,3 +3,4 @@ theme = Kanagawa Dragon mouse-hide-while-typing = true minimum-contrast = 1.1 font-size = 14 +command = /usr/local/bin/tmux diff --git a/nvr_git b/nvr_git index 2ef342e..cb4d755 100755 --- a/nvr_git +++ b/nvr_git @@ -11,7 +11,11 @@ nvr_git () { local servername=/tmp/nvr$(echo $main_module_repo_path | tr "/" "_") nvr -s --servername $servername "$@" else - /usr/bin/nvim "$@" + if test -f /usr/bin/nvim; then + /usr/bin/nvim "$@" + else + /usr/local/bin/nvim "$@" + fi fi } nvr_git $@