diff options
author | Amin Bandali <bandali@gnu.org> | 2019-09-02 20:46:35 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-09-02 20:46:35 -0400 |
commit | 2568a63436dab821bcc179aa49c62f441b7b8ae2 (patch) | |
tree | 8352f464a5e340942e15583b3e5b6f4bca5ac21d | |
parent | b2ca82835780e35d62a90cb19cb485167bf3a202 (diff) | |
download | configs-2568a63436dab821bcc179aa49c62f441b7b8ae2.tar.gz configs-2568a63436dab821bcc179aa49c62f441b7b8ae2.tar.xz configs-2568a63436dab821bcc179aa49c62f441b7b8ae2.zip |
emacs: don’t set initial-major-mode to text-mode
lisp-interaction-mode is fine. i do recall, however, that at some
point *scratch* used fundamental-mode though; not sure.
-rw-r--r-- | .emacs.d/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index fb4c73c..0aca776 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -345,7 +345,7 @@ For disabling the behaviour for certain buffers and/or modes." ;; i don't need the default hint (initial-scratch-message nil) ;; use customizable text-mode as major mode for *scratch* - (initial-major-mode 'text-mode) + ;; (initial-major-mode 'text-mode) ;; inhibit buffer list when more than 2 files are loaded (inhibit-startup-buffer-menu t) ;; don't need to see the startup screen or echo area message |