diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2020-08-09 17:22:33 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2020-08-09 17:22:33 +0100 |
commit | b7129e5441bc48b42b119e7687274ab9a60c4f8e (patch) | |
tree | b6e1a1545c9ca150356be4048fdfa3a148e53006 /Emacs | |
parent | 1cca162c8a3a8bab7d1deb5f679d1f3fbe285e71 (diff) | |
download | dotfiles-b7129e5441bc48b42b119e7687274ab9a60c4f8e.tar.gz dotfiles-b7129e5441bc48b42b119e7687274ab9a60c4f8e.tar.bz2 dotfiles-b7129e5441bc48b42b119e7687274ab9a60c4f8e.zip |
~moved flyspell
Diffstat (limited to 'Emacs')
-rw-r--r-- | Emacs/.config/emacs/config.org | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 2ecf3b2..7464934 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -1049,21 +1049,3 @@ Lisp function does not specify a special indentation." (funcall method indent-point state)))))))) (add-hook 'emacs-lisp-mode-hook #'(lambda () (interactive) (setq-local lisp-indent-function #'+modded/lisp-indent-function)))) #+END_SRC -** Flyspell -Flyspell allows me to quickly spell check text documents. I use -flyspell primarily in org mode, as that is my preferred prose writing -software, but I also need it in commit messages and so on. So -flyspell-mode should be hooked to text-mode. -#+BEGIN_SRC emacs-lisp -(use-package flyspell - :hook (text-mode . flyspell-mode) -#+END_SRC - -As I use ivy I'd like the flyspell correct interface (which allow for -corrections to real words) to use ivy. -#+BEGIN_SRC emacs-lisp -(use-package flyspell-correct-ivy - :after flyspell - :bind (:map org-mode-map - ("C-c C-a" . flyspell-correct-at-point))) -#+END_SRC |