diff options
-rw-r--r-- | init.el | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1891,7 +1891,11 @@ (use-package sh-script :config - (add-hook 'sh-mode-hook #'flyspell-prog-mode)) + (add-hook 'sh-mode-hook #'flyspell-prog-mode) + (add-hook 'sh-mode-hook + (lambda () + (setq flycheck-checker 'sh-shellcheck) + (flycheck-mode 1)))) (use-package python :init |