update
This commit is contained in:
parent
d3d5a19ddf
commit
2fb8821172
2 changed files with 6 additions and 1 deletions
1
ghostty
1
ghostty
|
|
@ -3,3 +3,4 @@ theme = Kanagawa Dragon
|
||||||
mouse-hide-while-typing = true
|
mouse-hide-while-typing = true
|
||||||
minimum-contrast = 1.1
|
minimum-contrast = 1.1
|
||||||
font-size = 14
|
font-size = 14
|
||||||
|
command = /usr/local/bin/tmux
|
||||||
|
|
|
||||||
6
nvr_git
6
nvr_git
|
|
@ -11,7 +11,11 @@ nvr_git () {
|
||||||
local servername=/tmp/nvr$(echo $main_module_repo_path | tr "/" "_")
|
local servername=/tmp/nvr$(echo $main_module_repo_path | tr "/" "_")
|
||||||
nvr -s --servername $servername "$@"
|
nvr -s --servername $servername "$@"
|
||||||
else
|
else
|
||||||
/usr/bin/nvim "$@"
|
if test -f /usr/bin/nvim; then
|
||||||
|
/usr/bin/nvim "$@"
|
||||||
|
else
|
||||||
|
/usr/local/bin/nvim "$@"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
nvr_git $@
|
nvr_git $@
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue