From 38593df6bb457fc3940fcef1d93976cd56b0a2d0 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sun, 26 May 2024 14:00:34 -0700 Subject: massive cleanup --- config/init-shell.el | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 config/init-shell.el (limited to 'config/init-shell.el') diff --git a/config/init-shell.el b/config/init-shell.el deleted file mode 100644 index 643877b..0000000 --- a/config/init-shell.el +++ /dev/null @@ -1,29 +0,0 @@ -;;; init-shell.el --- configure shell -*- lexical-binding: t -*- -;; Author: Franck Cuny - -;;; Commentary: - -;; configure shell - -;;; Code: - -(use-package sh-script - :defer t - :preface - (defvar sh-script-initialized nil) - - (defun initialize-sh-script () - (unless sh-script-initialized - (setq sh-script-initialized t) - (info-lookup-add-help :mode 'shell-script-mode - :regexp ".*" - :doc-spec '(("(bash)Index"))))) - :init - (add-hook 'shell-mode-hook #'initialize-sh-script)) - -(add-hook 'after-save-hook - #'executable-make-buffer-file-executable-if-script-p) - -(provide 'init-shell) - -;;; init-shell.el ends here -- cgit 1.4.1