doomemacs/modules/module-sh.el

12 lines
255 B
EmacsLisp
Raw Normal View History

2015-09-29 02:22:26 +08:00
;;; module-sh.el --- description
;; [pedantry intensifies]
(after! sh-script
2015-09-29 02:22:26 +08:00
(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