diff options
author | Case Duckworth | 2021-04-06 12:45:24 -0500 |
---|---|---|
committer | Case Duckworth | 2021-04-06 12:45:24 -0500 |
commit | 3a18f6146619e1c97a72a9b1b315177e6f7247ad (patch) | |
tree | b9d17553461b3baadbc52d27912f33307ecb642e | |
parent | Switch `icomplete-vertical' for `vertico' (diff) | |
download | emacs-3a18f6146619e1c97a72a9b1b315177e6f7247ad.tar.gz emacs-3a18f6146619e1c97a72a9b1b315177e6f7247ad.zip |
Unwrap `flyspell-correct' from the `when (executable-find ...'
-rw-r--r-- | init.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/init.el b/init.el index abb469d..aa35f34 100644 --- a/init.el +++ b/init.el | |||
@@ -761,10 +761,9 @@ if ripgrep is installed, otherwise `consult-grep'." | |||
761 | (:option 0x0-default-host 'ttm)) | 761 | (:option 0x0-default-host 'ttm)) |
762 | 762 | ||
763 | ;;;;; Flyspell-correct | 763 | ;;;;; Flyspell-correct |
764 | (when (executable-find ispell-program-name) | 764 | (with-eval-after-load 'flyspell |
765 | (with-eval-after-load 'flyspell | 765 | (setup (:straight flyspell-correct) |
766 | (setup (:straight flyspell-correct) | 766 | (define-key flyspell-mode-map (kbd "C-;") #'flyspell-correct-wrapper))) |
767 | (define-key flyspell-mode-map (kbd "C-;") #'flyspell-correct-wrapper)))) | ||
768 | 767 | ||
769 | ;;;; System tie-ins | 768 | ;;;; System tie-ins |
770 | ;; Insctead of using `setup''s `:needs', I'm going to wrap these in | 769 | ;; Insctead of using `setup''s `:needs', I'm going to wrap these in |