Update
This commit is contained in:
19
lisp/init-writing.el
Normal file
19
lisp/init-writing.el
Normal file
@@ -0,0 +1,19 @@
|
||||
;; -*- 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)
|
||||
Reference in New Issue
Block a user