Hi, I've currently set up $omg_second_line as follows to display the path relative to project root in $PS1. It works, so far so good, but I feel like it's "a bit" convoluted... is there any simpler way to implement this?
omg_second_line='\[\033[36m\]$(git rev-parse --show-toplevel | sed "s/^.*\/\(.*\)$/\1/")/$(git rev-parse --show-prefix)\[\033[m\]$ '
Thanks!