diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-19 19:49:53 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-19 19:49:53 -0700 |
commit | 3f6db3dd8d958e66dd6cc94e4c919c8d0f0ae38a (patch) | |
tree | 3a3d1cb51540364a7e340ff322177c2d312e2895 /emacs/custom/my-text.el | |
parent | UI: remove completely `use-package' (diff) | |
download | emacs.d-3f6db3dd8d958e66dd6cc94e4c919c8d0f0ae38a.tar.gz |
no need for `use-package' for a few more modes
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/my-text.el | 38 |
1 files changed, 14 insertions, 24 deletions
diff --git a/emacs/custom/my-text.el b/emacs/custom/my-text.el index 292a7f9..c926be3 100644 --- a/emacs/custom/my-text.el +++ b/emacs/custom/my-text.el @@ -1,31 +1,21 @@ -;;; my-text.el --- configures +;;; my-text.el --- configures modes related to text -*- lexical-binding: t -*- + ;;; Commentary: -;;; Code: -(require 'use-package) +;;; Code: -(use-package flyspell - :ensure t - :if (executable-find "aspell") - :hook ((text-mode . flyspell-mode) - (prog-mode . flyspell-prog-mode)) - :custom - (ispell-dictionary "en_US") - (ispell-program-name "aspell") - (ispell-extra-args '("--camel-case"))) +(require 'flyspell) +(setq ispell-dictionary "en_US" + ispell-program-name "aspell" + ispell-extra-args '("--camel-case")) +(add-hook 'text-mode-hook 'flyspell-mode) +(add-hook 'prog-mode-hook 'flyspell-prog-mode) -(use-package markdown-mode - :ensure t - :after (flyspell) - :commands (markdown-mode gfm-mode) - :mode (("README\\.md\\'" . gfm-mode) - ("\\.md\\'" . gfm-mode) - ("\\.markdown\\'" . gfm-mode)) - :custom - (markdown-fontify-code-blocks-natively t) - :config - (when (executable-find "pandoc") - (setq markdown-command "pandoc -f markdown -t html"))) +(require 'markdown-mode) +(setq markdown-fontify-code-blocks-natively t) +(when (executable-find "pandoc") + (setq markdown-command "pandoc -f markdown -t html")) (provide 'my-text) + ;;; my-text.el ends here |