No colors in ls
, etc.
#5258
Replies: 3 comments 2 replies
-
Hi When I run How could I set that alias permanent to be run at startup and tabby uses it by default in all tabs? Thanks |
Beta Was this translation helpful? Give feedback.
-
I don't see colors anywhere on MacOS Ventura, I do see color in ls when running ls --color but my username is not colored as it should be according the the color schemes I'm using, I have read similar posts but have not actually found an answer as to how to solve this. Can you provide some insight on how to get color working? I'm using the default shell ZSH but also tried Bash and it's not colored either. I don't see any of the styling provided by the color schemes at all, everything is completely plain text :( |
Beta Was this translation helpful? Give feedback.
-
I stumbled upon this discussion because somehow my terminal color doesn't work even when using |
Beta Was this translation helpful? Give feedback.
-
What is happening?
Color themes can only change colors of colored text that is printed to the terminal, not colorize text that is originally black and white.
How to make sure that a color scheme works
You can print a test table with various colours using
msgcat --color=test
on UNIX, or the following bash/zsh oneliner ifmsgcat
isn't installed:A similar test script for PowerShell:
How to enable colorized directory listings
on macOS
By default,
ls
output on macOS is black and white.You can re-enable output colorization by adding
export CLICOLOR=1
to the end of your~/.zshrc
file (permanently) or by runningexport CLICOLOR=1
in your shell (temporarily).on Linux
Alias
ls
tols --color=auto
, e.g:Beta Was this translation helpful? Give feedback.
All reactions