From 47ec2c2a417027710a4dceb09a87da60f4f24158 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Tue, 8 Sep 2020 11:55:06 +0300 Subject: emacs: turn on flycheck for yaml, markdown --- emacs.d/init.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/emacs.d/init.el b/emacs.d/init.el index 475b4e7..7e54c8f 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -167,6 +167,8 @@ ;; Turn on flycheck mode for program code. (add-hook 'prog-mode-hook 'flycheck-mode) +(add-hook 'yaml-mode-hook 'flycheck-mode) +(add-hook 'markdown-mode-hook 'flycheck-mode) (set-face-attribute 'flycheck-error nil :weight 'bold :underline "#ff0000" -- cgit v1.2.1