diff options
author | Alexander Sulfrian <alexander.sulfrian@fu-berlin.de> | 2016-08-04 16:34:59 +0200 |
---|---|---|
committer | Alexander Sulfrian <alexander.sulfrian@fu-berlin.de> | 2016-08-04 16:34:59 +0200 |
commit | 24fae775642bd782a49144b21e7523460861867a (patch) | |
tree | a97b67c8b9ae759054892396c2e774e53d014820 /init.d | |
parent | 5d934992cb0ad139e99e4d8c961b360a1a2f94f5 (diff) | |
download | emacs-24fae775642bd782a49144b21e7523460861867a.tar.gz emacs-24fae775642bd782a49144b21e7523460861867a.tar.xz emacs-24fae775642bd782a49144b21e7523460861867a.zip |
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
Diffstat (limited to '')
-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 |