如何将emacsclient后台设置为Emacs后台?

时间:2012-02-14 04:58:56

标签: linux emacs elisp emacsclient

我(在我的.emacs中)

(set-background-color "#101416")
(set-foreground-color "#f6f3e8")

我有2个绑定:

alias ex='emacsclient -nw'
alias ec='emacsclient -c -a ""'

出站工作正常,在终端打开客户端,但当我想打开它作为一个框架,我有白色背景:(

为什么以及如何在那里使用我的深色背景?

1 个答案:

答案 0 :(得分:4)

set-background-colorset-foreground-color仅影响当前帧,并且在运行.emacs时未执行emacsclient文件。

尝试设置变量default-frame-alist(“框架创建的默认值列表”):

(setq default-frame-alist
      '((background-color . "#101416")
        (foreground-color . "#f6f3e8")))