Use package autoinsert

This commit is contained in:
Marcus Kammer 2024-07-19 08:12:21 +02:00
parent 1cf4d3b5f8
commit e946627bc5
Signed by: marcuskammer
GPG key ID: C374817BE285268F
2 changed files with 11 additions and 8 deletions

View file

@ -145,11 +145,3 @@
("Europe/Sofia" "Sofia")
("Asia/Calcutta" "Bangalore")
("Asia/Tokyo" "Tokyo")))
(auto-insert-mode 1)
(setq auto-insert-query nil)
(setq auto-insert-alist
(append '((("\\.lisp\\'" . "Lisp header")
nil
";;;; -*- mode: common-lisp; coding: utf-8; -*-\n"))
auto-insert-alist))

View file

@ -19,6 +19,17 @@
(use-package htmlize)
(use-package autoinsert
:ensure nil
:init (auto-insert-mode 1)
:config
(setq auto-insert-query nil)
(setq auto-insert-alist
(append '((("\\.lisp\\'" . "Lisp header")
nil
";;;; -*- mode: common-lisp; coding: utf-8; -*-\n"))
auto-insert-alist)))
(use-package tramp
:ensure nil
:config