emacs/lisp/langs/icejam-lang-sh.el
Maciej Szlosarczyk 1f20dd7bc1
Some checks are pending
/ Test config on ${{matrix.node}} (20) (push) Waiting to run
Move lang files
2024-07-27 10:52:59 +03:00

13 lines
407 B
EmacsLisp

;;; sh -- summary -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
(use-package fish-mode :straight t :defer t)
(add-to-list 'auto-mode-alist '("\\.zsh\\'" . sh-mode))
(add-to-list 'auto-mode-alist '("\\zshrc\\'" . sh-mode))
(add-to-list 'auto-mode-alist '("\\.zshrc\\'" . sh-mode))
(add-to-list 'auto-mode-alist '("\\.envrc\\'" . sh-mode))
(provide 'icejam-lang-sh)
;;; icejam-lang-sh.el ends here