diff options
author | Amin Bandali <bandali@kelar.org> | 2022-08-03 23:10:56 -0400 |
---|---|---|
committer | Amin Bandali <bandali@kelar.org> | 2022-08-03 23:12:29 -0400 |
commit | bb65cc2c65192c71b1be24a7f33bf3d2b3a669d6 (patch) | |
tree | 22dc430ac2b4c962615a1271df4ecd8bfec11e5b | |
parent | 55ac7968b4171c9ab8b5e3487b00d4b73b794a18 (diff) | |
download | configs-bb65cc2c65192c71b1be24a7f33bf3d2b3a669d6.tar.gz configs-bb65cc2c65192c71b1be24a7f33bf3d2b3a669d6.tar.xz configs-bb65cc2c65192c71b1be24a7f33bf3d2b3a669d6.zip |
* .emacs.d/init.el: Drop most `startup' customizations.
-rw-r--r-- | .emacs.d/init.el | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 6e70ee6..0500aa8 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -158,21 +158,7 @@ (setq read-file-name-completion-ignore-case t)) ;; `startup' -;; don't need to see the startup echo area message -(advice-add #'display-startup-echo-area-message :override #'ignore) -(setq - auto-save-list-file-prefix (b/var "auto-save/sessions/") - ;; i want *scratch* as my startup buffer - initial-buffer-choice t - ;; 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) - ;; 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 - inhibit-startup-screen t - inhibit-startup-echo-area-message user-login-name) +(setq auto-save-list-file-prefix (b/var "auto-save/sessions/")) (with-eval-after-load 'files (setq |