mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
18 lines
434 B
EmacsLisp
18 lines
434 B
EmacsLisp
;;; siren-flyspell.el --- jimeh's Emacs Siren: flyspell configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for flyspell.
|
|
|
|
;;; Code:
|
|
|
|
(require 'flyspell)
|
|
(diminish 'flyspell-mode)
|
|
(setq ispell-program-name "aspell" ; use aspell instead of ispell
|
|
ispell-extra-args '("--lang=en" "--sug-mode=ultra"))
|
|
|
|
(global-set-key (kbd "s-.") 'flyspell-correct-word-before-point)
|
|
|
|
(provide 'siren-flyspell)
|
|
;;; siren-flyspell.el ends here
|