summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2020-12-12 02:16:24 -0500
committerKyle Meyer <kyle@kyleam.com>2020-12-12 02:16:48 -0500
commit852f16992c54630bb982b761a6051fd49d27de9f (patch)
treee03dc1f78276b3872aaf4ba61b1657ed00435bf6 /init.el
parent34dbab7895722f8b4d6e95ac40a0dc9acfa99e0f (diff)
downloademacs.d-852f16992c54630bb982b761a6051fd49d27de9f.tar.gz
sh-mode: Enable flyspell-prog-mode
Diffstat (limited to 'init.el')
-rw-r--r--init.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/init.el b/init.el
index 1100a07..6ea74e1 100644
--- a/init.el
+++ b/init.el
@@ -1889,6 +1889,10 @@
imenu-generic-expression))))
(define-key scheme-mode-map (kbd "M-.") #'xref-find-definitions))
+(use-package sh-script
+ :config
+ (add-hook 'sh-mode-hook #'flyspell-prog-mode))
+
(use-package python
:init
(add-to-list 'interpreter-mode-alist '("python2" . python-mode))