我的.emacs中有
(set-background-color "#101416")
(set-foreground-color "#f6f3e8")
我有两个绑定:
alias ex='emacsclient -nw'
alias ec='emacsclient -c -a ""'
ex可以很好地在终端中打开客户端,但当我想把它作为一个框架打开时,我有白色背景:(
为什么以及如何在那里使用我的深色背景?
set-background-color
和set-foreground-color
只影响当前帧,并且在运行emacsclient
时不会执行.emacs
文件。
尝试设置变量default-frame-alist
("创建帧的默认值Alist"):
(setq默认帧列表'((背景色。"#101416")(前景色。"#f6f3e8"))