emacs/spelling.el
2017-08-26 01:21:33 +03:00

15 lines
328 B
EmacsLisp

;;; spelling.el -- summary
;;; Commentary:
;;; Code:
;; Disable meta on right alt (useful for Polish characters)
(setq ns-right-alternate-modifier nil)
(require 'ispell)
;; Highlight misspelled words
(setq ispell-program-name "aspell")
(add-hook 'prog-mode-hook 'flyspell-mode)
(provide 'spelling)
;;; spelling.el ends here