From 092304d9e0ccc37cc0ddaa9b136457e56a1cac20 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 12 Oct 2025 11:47:26 -0500 Subject: changing repositories --- modules/prog-shell.el | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 modules/prog-shell.el (limited to 'modules/prog-shell.el') diff --git a/modules/prog-shell.el b/modules/prog-shell.el new file mode 100644 index 00000000..e63387cf --- /dev/null +++ b/modules/prog-shell.el @@ -0,0 +1,15 @@ +;;; prog-shell --- Shell Programming Settings and Functionality -*- lexical-binding: t; coding: utf-8; -*- +;; author Craig Jennings + +;;; Commentary: +;; Open any *.sh buffer and sh-mode loads with Flycheck attached, so syntax errors appear immediately. +;; Re-save or invoke C-c ! l to refresh diagnostics while you iterate on scripts. + +;;; Code: + +(use-package sh-script + :defer .5 + :hook (sh-mode . flycheck-mode)) + +(provide 'prog-shell) +;;; prog-shell.el ends here -- cgit v1.2.3