We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b3b424 commit 96faee7Copy full SHA for 96faee7
1 file changed
shrc.sh
@@ -39,6 +39,11 @@ add_to_path_start "/opt/homebrew/bin"
39
40
add_to_path_start "$HOME/.bin"
41
42
+# Ghostty terminfo fallback for remote machines without it
43
+if [ "$TERM" = "xterm-ghostty" ] && ! infocmp xterm-ghostty >/dev/null 2>&1; then
44
+ export TERM=xterm-256color
45
+fi
46
+
47
# aliases
48
alias gl='git log --date=short --pretty=format:"%C(124)%ad %C(24)%h %C(34)%an %C(252)%s%C(178)%d" --stat'
49
alias gsign='git commit -C HEAD -S -s --amend'
0 commit comments