Don't use emacs-lisp-mode as the initial mode
Using `emacs-lisp-mode' as the initial major-mode also runs `flycheck'. Flycheck will constantly show warnings because "*scratch*" doesn't contain the proper header or footer. The default initial major-mode is `lisp-interaction-mode', which is basically the same as `emacs-lisp-mode', with some extra (annoying) keybindings which get overwritten by `paredit' anyway. Now I don't see any warnings.
This commit is contained in:
parent
32c9f20364
commit
26689b0eec
1 changed files with 0 additions and 1 deletions
|
@ -1259,7 +1259,6 @@ from myaethon2.core.decorators import (
|
||||||
(stante-after "startup"
|
(stante-after "startup"
|
||||||
(setq inhibit-default-init t)
|
(setq inhibit-default-init t)
|
||||||
(setq inhibit-startup-message t)
|
(setq inhibit-startup-message t)
|
||||||
(setq initial-major-mode 'emacs-lisp-mode)
|
|
||||||
(setq initial-scratch-message nil))
|
(setq initial-scratch-message nil))
|
||||||
|
|
||||||
;; (stante-after tern
|
;; (stante-after tern
|
||||||
|
|
Loading…
Reference in a new issue