my dotz
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

*

+3 -3
+1 -1
.rc
··· 41 41 . /tmp/ssh-agent-$USER >/dev/null 42 42 fi 43 43 44 - if [ "$TERM" = "foot" ]; then 44 + if [ "$TERM" = "foot" ] || [ "$TERM" = "xterm-ghostty" ]; then 45 45 alias ssh='TERM=xterm-256color ssh' 46 46 fi 47 47
+2 -2
bin/prompt.go
··· 28 28 } else { 29 29 promptRoot = filepath.Base(gitRoot) 30 30 } 31 - // subtract the git toplevel "/home/j3s" 32 - // from the cwd "/home/j3s/code/nongitdir" 31 + // subtract the git toplevel "/home/<user>" 32 + // from the cwd "/home/<user>/code/nongitdir" 33 33 // to get the suffix "/code/nongitdir" 34 34 // os.cwd gets the symlink, git does not 35 35 suffix := cwd[len(gitRoot):]