Fix catch-all text-mode entry in auto-mode-alist

This indirectly fixes an issue where the elfeed db was opened in
text-mode, triggering the large-file check.
This commit is contained in:
Henrik Lissner 2018-05-24 19:12:36 +02:00
parent 18a6df5e6f
commit 6dc375a891
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -70,7 +70,7 @@ fundamental-mode) for performance sake."
;; Built-in plugins
;;
(push '("/[A-Z]+$" . text-mode) auto-mode-alist)
(push '("/LICENSE\\'" . text-mode) auto-mode-alist)
(electric-indent-mode -1) ; enabled by default in Emacs 25+. No thanks.