Files
Fabio Scotto di Santolo fc6f51343d Organize Emacs configuration
2025-12-24 15:56:55 +01:00

12 lines
273 B
EmacsLisp

(with-eval-after-load 'flycheck
(add-hook 'bash-ts-mode-hook 'flycheck-mode))
(use-package reformatter
:ensure t
:config
(reformatter-define shfmt-format
:program "shfmt"
:args '("-i" "2" "-ci")))
(add-hook 'bash-ts-mode-hook #'shfmt-format-on-save-mode)