[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Introducing a great new minimal Emacs config
From: |
Stefan Monnier |
Subject: |
Re: Introducing a great new minimal Emacs config |
Date: |
Wed, 17 Apr 2019 09:57:41 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) |
> On the tty my eyes are blind to blue on black, I use
> % emacs -Q --color=no
> Is there a way to set emacsclient on the tty for no color?
Rather than throw away color support altogether, you could tell Emacs
that your terminal has a dark background, in which case it will choose
saner colors for your situation (in general Emacs can't know the
background color of your terminal and it by default presumes it's
a light color, IIRC). E.g.:
emacs -nw -Q --eval "(setq frame-background-mode 'dark)"
Of course, you may still prefer not using colors at all, and I have
nothing against that.
Stefan