我(在我的.emacs中)
(set-background-color "#101416")
(set-foreground-color "#f6f3e8")
我有2个绑定:
alias ex='emacsclient -nw'
alias ec='emacsclient -c -a ""'
出站工作正常,在终端打开客户端,但当我想打开它作为一个框架,我有白色背景:(
为什么以及如何在那里使用我的深色背景?
答案 0 :(得分:4)
set-background-color
和set-foreground-color
仅影响当前帧,并且在运行.emacs
时未执行emacsclient
文件。
尝试设置变量default-frame-alist
(“框架创建的默认值列表”):
(setq default-frame-alist '((background-color . "#101416") (foreground-color . "#f6f3e8")))