refactor(cli): make all searches case-sensitive
This is more predictable, and is safe as a global default in CLI sessions (but not in interactive ones). This indirectly fixes case insensitivity in our commit linter rules.
This commit is contained in:
parent
a3f917c42d
commit
abc16ef68c
3 changed files with 6 additions and 6 deletions
|
@ -69,6 +69,8 @@ purpose.")
|
|||
(setq make-backup-files nil)
|
||||
;; Stop user configuration from interfering with package management
|
||||
(setq enable-dir-local-variables nil)
|
||||
;; Reduce ambiguity, embrace specificity. It's more predictable.
|
||||
(setq-default case-fold-search nil)
|
||||
|
||||
;; Default to using all cores, rather than half of them, since we compile things
|
||||
;; ahead-of-time in a non-interactive session.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue