diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-29 08:51:47 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-29 08:51:47 -0700 |
commit | 788e36f39a9fecdc1c0bb73ab0b869e24c36fa80 (patch) | |
tree | 703c8fa7a0653014f0d9361c6be9d9f35d2901b1 | |
parent | truly no more use-package (diff) | |
download | emacs.d-788e36f39a9fecdc1c0bb73ab0b869e24c36fa80.tar.gz |
my-text: enable goto-address-mode
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/my-text.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/emacs/custom/my-text.el b/emacs/custom/my-text.el index 1a1831a..3a58ebb 100644 --- a/emacs/custom/my-text.el +++ b/emacs/custom/my-text.el @@ -9,6 +9,8 @@ (customize-set-variable 'ispell-extra-args '("--camel-case")) (add-hook 'text-mode-hook 'flyspell-mode) +(add-hook 'text-mode-hook 'goto-address-mode) + (dolist (hook '(prog-mode-hook conf-mode-hook)) (add-hook hook 'flyspell-prog-mode)) |