diff options
-rw-r--r-- | init.d/main.org | 15 |
1 files changed, 15 insertions, 0 deletions
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 |