Files
.emacs.d/lisp/init-writing.el

20 lines
524 B
EmacsLisp
Raw Permalink Normal View History

2026-04-03 15:12:32 +11:00
;; -*- lexical-binding: t; -*-
(use-package flyspell
:ensure nil
:commands flyspell-mode
:bind (:map flyspell-mode-map
("C-M-i" . nil)
("C-;" . nil)
("C-," . nil)
("C-; C-4" . 'flyspell-auto-correct-previous-word)
;; ("C-; n" . 'flyspell-goto-next-error)
))
(use-package jinx
:hook ((text-mode prog-mode conf-mode org-mode) . jinx-mode)
:commands jinx-mode
:bind ([remap ispell-word] . jinx-correct))
(provide 'init-writing)