feat(lang): handle additional file patterns with sh-mode

This commit is contained in:
2021-03-23 11:34:00 +00:00
parent 29e7e066ce
commit 009c3dc4b1

View File

@@ -9,11 +9,15 @@
(use-package sh-script
:straight (:type built-in)
:mode
("/\\.env\\'" . sh-mode)
("/\\.env\\." . sh-mode)
("/\\.envrc\\'" . sh-mode)
("/\\.envrc\\." . sh-mode)
("/zshenv\\'" . sh-mode)
("/zshrc\\'" . sh-mode)
("\\.tmux\\'" . sh-mode)
("\\.tmuxsh\\'" . sh-mode)
("\\.tmuxtheme\\'" . sh-mode)
("/zshenv\\'" . sh-mode)
("/zshrc\\'" . sh-mode)
:bind
(:map sh-mode-map