Skip to content

Commit

Permalink
tweak(builtin): minor performance tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Apr 4, 2024
1 parent c4cbb7f commit 3b3ac48
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions core/me-builtin.el
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@
(visible-bell nil)
;; Increase the large file threshold to 50 MiB
(large-file-warning-threshold (* 50 1024 1024))
;; Initial scratch message (will be overridden if "fortune" is installed)
(initial-scratch-message ";; MinEmacs -- start here!")
;; No initial scratch message
(initial-scratch-message nil)
;; Set initial buffer to fundamental-mode for faster load
(initial-major-mode 'fundamental-mode)
;; Always prompt in minibuffer (no GUI)
Expand Down Expand Up @@ -179,6 +179,7 @@
;; The `inhibit-startup-echo-area-message' variable is very restrictive, there is only one unique way of setting it right!
;; See: reddit.com/r/emacs/comments/6e9o4o/comment/di8q1t5
(fset 'display-startup-echo-area-message #'ignore)
(fset 'display-startup-screen #'ignore)

;;; Why use anything but UTF-8?
(prefer-coding-system 'utf-8)
Expand Down

0 comments on commit 3b3ac48

Please sign in to comment.