Emacs Spelling
Spell check in Emacs
Writing blogs and other documents i make spelling mistakes , one thing is I am not that good at spelling and other are due to my typing , to rectify this i use emacs flyspell mode with flyspell-correct-ivy . flyspell underlines all the wrong entries and i use the ivy to correct it . It is a smooth workflow
(use-package flyspell-correct-ivy
:ensure t
:config
(define-key flyspell-mode-map (kbd "C-c C-;") 'flyspell-correct-previous-word-generic)
(add-hook 'flyspell-mode-hook 'flyspell-buffer )
)