diff --git a/init.el b/init.el index 0095334f9..e17c8827f 100644 --- a/init.el +++ b/init.el @@ -92,6 +92,7 @@ module-regex ; /^[^\s](meaning)[^\n]*/ module-ruby ; <3 module-sass ; @include magic; + module-sh ; she sells Z-shells by the C shore module-swift ; yay, emoji variables! module-markdown ; markdown ;; module-rust diff --git a/modules/module-sh.el b/modules/module-sh.el new file mode 100644 index 000000000..da161488b --- /dev/null +++ b/modules/module-sh.el @@ -0,0 +1,11 @@ +;;; module-sh.el --- description + +;; [pedantry intensifies] +(after! sh-mode + (defadvice sh-mode (after sh-mode-rename-modeline activate) + (setq mode-name "Sh")) + + (add-hook! sh-mode 'flycheck-mode)) + +(provide 'module-sh) +;;; module-sh.el ends here