diff options
author | Case Duckworth | 2021-03-04 09:07:36 -0600 |
---|---|---|
committer | Case Duckworth | 2021-03-04 09:07:36 -0600 |
commit | 2cb5c21b0e9332604d561b87dba1918a795dfb34 (patch) | |
tree | 2ea0f27af8b44605830db48453477ee82a2f5151 | |
parent | Random configs (diff) | |
download | emacs-2cb5c21b0e9332604d561b87dba1918a795dfb34.tar.gz emacs-2cb5c21b0e9332604d561b87dba1918a795dfb34.zip |
Load flyspell-correct after flyspell
The binding still isn't working for some reason, however. I'm not sure what the reason might be. I suppose I ought to macroexpand it.
-rw-r--r-- | init.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/init.el b/init.el index a37c715..e504fd5 100644 --- a/init.el +++ b/init.el | |||
@@ -345,6 +345,7 @@ | |||
345 | ;; Theming | 345 | ;; Theming |
346 | 346 | ||
347 | (use-package form-feed | 347 | (use-package form-feed |
348 | :demand | ||
348 | :config (global-form-feed-mode +1)) | 349 | :config (global-form-feed-mode +1)) |
349 | 350 | ||
350 | (use-package modus-themes | 351 | (use-package modus-themes |
@@ -441,6 +442,7 @@ | |||
441 | (write-region "" nil ispell-personal-dictionary nil 0))) | 442 | (write-region "" nil ispell-personal-dictionary nil 0))) |
442 | 443 | ||
443 | (use-package flyspell-correct | 444 | (use-package flyspell-correct |
445 | :after flyspell | ||
444 | :bind ("C-;" . flyspell-correct-wrapper)) | 446 | :bind ("C-;" . flyspell-correct-wrapper)) |
445 | 447 | ||
446 | (setq-default show-paren-delay 0 | 448 | (setq-default show-paren-delay 0 |