设置emacs默认帧问题

时间:2016-09-08 09:47:49

标签: emacs frame

尝试使用.emacs文件设置自定义帧大小。但是,当我打开emacs时,它会达到那个大小,然后立即默认返回标准的较小的Frame。

这只是一个有bug的实时内容,还是在读取.emacs文件后覆盖.emacs文件的内容。

这是我当前的.emacs文件:

(custom-set-variables
 '(custom-enabled-themes (quote (wheatgrass)))
 '(global-linum-mode t)
 '(line-number-mode t)
 '(show-paren-mode t))
(custom-set-faces
)

(setq inhibit-startup-message t)
(add-to-list 'default-frame-alist '(height . 52))
(add-to-list 'default-frame-alist '(width . 140))

0 个答案:

没有答案