我有(在我的.emacs中)
<code>(set-background-color "#101416") (set-foreground-color "#f6f3e8") </code>
我有2个绑定:
<code>alias ex='emacsclient -nw' alias ec='emacsclient -c -a ""' </code>
ex工作正常在终端打开客户端,但当我想打开它作为一个框架我有白色背景:(
为什么以及如何在那里使用我的深色背景?
解决方法:
set-background-color和set-foreground-color仅影响当前帧,运行emacsclient时不执行.emacs文件.
尝试设置变量default-frame-alist(“用于创建帧的默认值的Alist”):
(setq default-frame-alist
'((background-color . "#101416")
(foreground-color . "#f6f3e8")))
【说明】:本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!