From 24fae775642bd782a49144b21e7523460861867a Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Thu, 4 Aug 2016 16:34:59 +0200 Subject: init: Remove statup message I do not want to read (on every startup): For information about GNU Emacs and the GNU system, type C-h C-a --- init.d/main.org | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/init.d/main.org b/init.d/main.org index fb471ab..6ad85a0 100644 --- a/init.d/main.org +++ b/init.d/main.org @@ -389,10 +389,25 @@ file (especially important for editing files via tramp). ** Remove some annoyances *** No startup message +Remove the startup screen. + #+begin_src emacs-lisp (setq inhibit-startup-message t) #+end_src +Remote the message in the message area: + + For information about GNU Emacs and the GNU system, type C-h C-a + +=inhibit-startup-echo-area-message= could be used, but it has to be +set to the username (as elisp literal), So =(user-login-name)= does +not work. To generalize the config, this simply overwrites the config +printing the message. + +#+begin_src emacs-lisp + (defun display-startup-echo-area-message ()) +#+end_src + *** Newline at end of file Require a newline at end of file, but do not insert newlines -- cgit v1.2.3