Oh-my-bash shell enhancement with nerd fonts

I’m pretty new to git, but I googled and found this that might be of interest??

they suggested to try:

git config --global pager.branch false

not sure why oh-my-bash is interfering… odd.

I just tried it, and that appears to fix it.

I think colors are defined in the base theme… in this case for powerline-multiline:

oh-my-bash/themes/powerline/powerline.theme.sh

SCM_NONE_CHAR=""
SCM_GIT_CHAR=${POWERLINE_SCM_GIT_CHAR:=" "}
SCM_THEME_PROMPT_CLEAN=""
SCM_THEME_PROMPT_DIRTY=""
SCM_THEME_PROMPT_CLEAN_COLOR=25
SCM_THEME_PROMPT_DIRTY_COLOR=88
SCM_THEME_PROMPT_STAGED_COLOR=30
SCM_THEME_PROMPT_UNSTAGED_COLOR=92
SCM_THEME_PROMPT_COLOR=${SCM_THEME_PROMPT_CLEAN_COLOR}

and I think the colors are ANSI escaped, but I have been unable to get any colors to change:

https://www.lihaoyi.com/post/BuildyourownCommandLinewithANSIescapecodes.html

Thanks, that fixes it indeed! Should’ve thought about that old trick: google it… :laughing:
I’ll have a look at the colouring when I find the time and am sufficiently annoyed by it.