From 3f6db3dd8d958e66dd6cc94e4c919c8d0f0ae38a Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Tue, 19 Apr 2022 19:49:53 -0700 Subject: no need for `use-package' for a few more modes --- emacs/custom/my-text.el | 38 ++++++++++++++------------------------ emacs/init.el | 3 ++- 2 files changed, 16 insertions(+), 25 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 diff --git a/emacs/init.el b/emacs/init.el index 1ef3676..7fbc245 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -17,7 +17,8 @@ (defvar my/package-list '(use-package exec-path-from-shell - notmuch) + notmuch + markdown-mode) "List of packages to be installed.") (defun my/packages-installed-p () -- cgit 1.4.1