doomemacs/modules/module-sh.el
2015-09-28 16:56:52 -04:00

12 lines
255 B
EmacsLisp

;;; module-sh.el --- description
;; [pedantry intensifies]
(after! sh-script
(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