Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为了避免出现白色背景,我将默认的 emacs 背景颜色更改为“深灰色”——它非常适合晚上在 GUI 中工作。. . 但是,emacs 也是我的终端默认编辑器,并且使用新的背景颜色基本上无法阅读。
有没有办法让我获得 GUI 的背景颜色,然后在终端中启动 emacs 以编辑 PKGBUILDS 和其他文件时的所有默认设置(黑色背景和默认语法突出显示)?
谢谢!我试过在网上搜索无济于事。. .
您可以在 init.el 中添加类似以下内容。
(when (display-graphic-p) (set-background-color "darkgrey"))
如果在终端中运行,它不会改变背景颜色。