doomemacs/modules/module-sh.el

12 lines
253 B
EmacsLisp
Raw Normal View History

2015-09-28 14:22:26 -04:00
;;; 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