最佳答案
我想把欢迎屏幕藏起来。
我的 .emacs
文件:
(setq c-basic-offset 4) ; indents 4 chars
(setq tab-width 4) ; and 4 char wide for TAB
(setq indent-tabs-mode nil) ; And force use of spaces
(turn-on-font-lock) ; same as syntax on in Vim
(setq width (max width (+ (length str) 1))) ;line numbers
(setq inhibit-splash-screen t) ; hide welcome screen
我尝试运行 my.emacs 中的最后一行代码,但没有成功。
如何在 Emacs 中隐藏欢迎屏幕?