case-fold-search = nil

This commit is contained in:
Henrik Lissner 2019-12-16 00:46:56 -05:00
parent 68223e1178
commit 2f79fab99f
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -162,6 +162,12 @@ users).")
;; to, it's our (the user's) failure. One case for all!
(setq auto-mode-case-fold nil)
;; Make all regexps case-sensitive by default. This favors correctness for
;; programmatical regexp searches and provides a slight performance benefit to
;; font-locking where the keywords don't let-bind `case-fold-search' themselves
;; and are already case-correct. This could break poorly written packages!
(setq-default case-fold-search nil)
;; Display the bare minimum at startup. We don't need all that noise. The
;; dashboard/empty scratch buffer is good enough.
(setq inhibit-startup-message t