Add dabbrev-ignored-buffer-modes and text-mode-ispell-word-completion

This commit is contained in:
James Cherti
2025-02-14 07:56:00 -05:00
parent f39578acf3
commit 24525e4c13

View File

@@ -519,6 +519,10 @@
;; `fido-vertical-mode'
(setq icomplete-compute-delay 0.01)
;; In Emacs 30 and newer, disable Ispell completion to avoid annotation errors
;; when no `ispell' dictionary is set.
(setq text-mode-ispell-word-completion nil)
;;; ibuffer
(setq ibuffer-formats
@@ -543,4 +547,9 @@
(setq save-abbrevs 'silently)
;;; dabbrev
(setq dabbrev-ignored-buffer-modes
'(archive-mode image-mode docview-mode tags-table-mode pdf-view-mode))
;;; init.el ends here