diff options
author | Thanos Apollo <[email protected]> | 2023-11-24 14:24:55 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-11-24 14:24:55 +0200 |
commit | 898d5ceb89fc54d91ffc35a6e180d6789f4a0a2b (patch) | |
tree | 94c548fb19d3b88e60e744fc6866e6c7184fc107 | |
parent | 7f89a06305876061b1f2c69b0951c12a4de110e8 (diff) |
emacs:(tools) Add hook for markdown - flyspell-mode
-rw-r--r-- | .emacs.d/modules/thanos-tools.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.emacs.d/modules/thanos-tools.el b/.emacs.d/modules/thanos-tools.el index 51039f7..6be911c 100644 --- a/.emacs.d/modules/thanos-tools.el +++ b/.emacs.d/modules/thanos-tools.el @@ -153,5 +153,7 @@ (setf gptel-api-key (password-store-get "chatgpt/api") gptel-model 'gpt-4-32k) +(add-hook 'markdown-mode-hook #'(lambda () (flyspell-mode))) + (provide 'thanos-tools) ;;; thanos-tools.el ends here |