Closed rennsax closed 4 months ago
Hello, I have a simple question: why ls --color=auto show no colors in vterm, while ls --color does render colors? It happens for BSD (macOS version) ls but not for GNU coreutils ls.
ls --color=auto
ls --color
I fix this issue by appending
[ -n "$INSIDE_EMACS" ] && export COLORTERM="truecolor"
to my shell init file.
Hello, I have a simple question: why
ls --color=auto
show no colors in vterm, whilels --color
does render colors? It happens for BSD (macOS version) ls but not for GNU coreutils ls.