using require

This commit is contained in:
2023-05-16 11:18:38 +02:00
parent 8fdad944f9
commit 98ccb528ea
65 changed files with 5977 additions and 0 deletions

12
lisp/init-shellscript.el Normal file
View File

@@ -0,0 +1,12 @@
;; *** Shell-Script Mode
;; C-c C-c [un-]comments everywhere, force in shell-script-mode as well
(add-hook
'sh-mode-hook
(function
(lambda()
(local-set-key (kbd "C-c C-c") 'comment-or-uncomment-region-or-line))))
(provide 'init-shellscript)
;;; init-shellscript.el ends here