Unable to hide welcome screen in Emacs

后端 未结 6 456
隐瞒了意图╮
隐瞒了意图╮ 2020-12-02 11:13

I want to hide the welcome screen.

My .emacs file:

 (setq c-basic-offset 4) ; indents 4 chars
 (setq tab-width 4)          ; and 4 char wi         


        
6条回答
  •  醉梦人生
    2020-12-02 11:23

    In Emacs 24, inhibit-splash-screen and inhibit-startup-message are alias for inhibit-startup-screen, so simply add (setq inhibit-startup-screen t) to your .emacs file will solve the problem.

    Given that configuration, your startup buffer is now *scratch*, if you want to further change the default buffer, M-h v initial-buffer-choice will help.

    Official document: http://www.gnu.org/software/emacs/manual/html_node/elisp/Startup-Summary.html

提交回复
热议问题