Add module-sh
This commit is contained in:
parent
a8af7a8df8
commit
bc33c1bce4
2 changed files with 12 additions and 0 deletions
1
init.el
1
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
|
||||
|
|
11
modules/module-sh.el
Normal file
11
modules/module-sh.el
Normal file
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue