Hans Alves
Hans Alves
@FrazerClews To check if the stdout is being written to a tty you can use `test -t 1` and to test if that tty supports colors you can use `tput...
A workaround is to set the STARSHIP_SHELL variable to zsh. However, this will cause starships shell module to display zsh instead of bash.
I ended up not using starship from devenv, but initializing it from my .bashrc / .zshrc In devenv I now only have ``` enterShell = '' export STARSHIP_CONFIG=${config.env.DEVENV_ROOT}/starship.toml ....... ''...