emacs/lang/sh.el
Maciej Szlosarczyk 81931cee46
Update packages
- add fish handling
- add lua
- update gleam
2024-05-29 08:52:15 +03:00

13 lines
396 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 '+custom-lang-sh)
;;; sh.el ends here