Invoke grc terminal colorizer on ALL commands implicitly

Viewed 2184

I love the grc colorizer for the terminal. However I have to explicitly prefix anything I want colorized with:

grc --config=conf.mine

Is there any way to have it automatically applied to everything you input on the command line (so that potentially I don't even need to know what grc is)? Perhaps using shell hooks, if a better alternative doesn't exist?

2 Answers

I tried this, and it worked for me:

alias ls="ls -FHG"
Related