diff options
author | Alan Pearce | 2022-10-05 22:29:42 +0200 |
---|---|---|
committer | Alan Pearce | 2022-10-08 01:34:14 +0200 |
commit | b0f9ab4e92ee0fbc329f9bc69702acfbb9c2bc77 (patch) | |
tree | 21d59df412b30753d21ff8f35f655544e7efde24 /user | |
parent | 90d38bcd67c5bf52d5419273b27e0b29fdd5820f (diff) | |
download | nixfiles-b0f9ab4e92ee0fbc329f9bc69702acfbb9c2bc77.tar.lz nixfiles-b0f9ab4e92ee0fbc329f9bc69702acfbb9c2bc77.tar.zst nixfiles-b0f9ab4e92ee0fbc329f9bc69702acfbb9c2bc77.zip |
Emacs: fix startup echo area message inhibition
Diffstat (limited to 'user')
-rw-r--r-- | user/emacs/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user/emacs/init.el b/user/emacs/init.el index c820fbc1..5da22a7c 100644 --- a/user/emacs/init.el +++ b/user/emacs/init.el @@ -1,5 +1,5 @@ ;;; init --- user init file -*- lexical-binding: t; -*- -(setq inhibit-startup-echo-area-message "alan") +(eval '(setq inhibit-startup-echo-area-message "alan")) (let ((default-gc-cons-threshold (* 16 1024 1024)) (default-file-name-handler-alist file-name-handler-alist)) (setq gc-cons-threshold most-positive-fixnum |