Unable to hide welcome screen in Emacs

后端 未结 6 466
隐瞒了意图╮
隐瞒了意图╮ 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:29

    Add the following to your $HOME/.emacs:

    (setq inhibit-startup-screen t)
    

    The next time you start Emacs, the welcome screen shouldn't appear. If you already have Emacs open with the welcome screen, you can kill it with C-x k (Control-x, then k).

提交回复
热议问题