Unable to hide welcome screen in Emacs

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

    (setq inhibit-splash-screen t)
    (setq inhibit-startup-message t)
    

    Alternatively you could:

    alias emacs='emacs --no-splash'
    

提交回复
热议问题