Enable spellchecking in Emacs buffers

This commit is contained in:
Ohad Livne 2025-12-02 21:47:57 +02:00
parent b4b42c6000
commit 81a26f2890
Signed by: libohad-dev
GPG key ID: 34FDC68B51191A4D

View file

@ -23,8 +23,14 @@
:bind (("C-z" . nil) :bind (("C-z" . nil)
("C-z i" . find-init-file) ("C-z i" . find-init-file)
("C-z f" . ffap)) ("C-z f" . ffap))
:hook ((after-save . executable-make-buffer-file-executable-if-script-p) :hook (
(xref-after-update . outline-minor-mode)) ;; keep-sorted start
(after-save . executable-make-buffer-file-executable-if-script-p)
(prog-mode . flyspell-prog-mode)
(text-mode . flyspell-mode)
(xref-after-update . outline-minor-mode)
;; keep-sorted end
)
:init :init
(setq load-path (append (list (setq load-path (append (list
(expand-file-name "~/.config/emacs/site-lisp/") (expand-file-name "~/.config/emacs/site-lisp/")