Emacs: Run hl-todo-mode when entering gnuplot-mode.

This commit is contained in:
tastytea 2020-11-28 15:08:34 +01:00
parent 70311f9ddb
commit 992fb95e73
1 changed files with 2 additions and 1 deletions

View File

@ -18,7 +18,8 @@
;; :config (explain-pause-mode t))
(use-package gnuplot
:mode ("\\(\\.gp\\|gnuplot\\)$" . gnuplot-mode))
:mode ("\\(\\.gp\\|gnuplot\\)$" . gnuplot-mode)
:hook (gnuplot-mode . hl-todo-mode))
(provide 'misc/misc)
;;; misc.el ends here