From 9da66ac5f46debbc6a8d02793af572bcdcf1d09f Mon Sep 17 00:00:00 2001 From: colin Date: Thu, 20 Jul 2023 20:56:20 -0700 Subject: mo re th em es --- init-el.org | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/init-el.org b/init-el.org index 697d2af..f253d56 100644 --- a/init-el.org +++ b/init-el.org @@ -600,8 +600,9 @@ New in emacs 28, native compilation can be enabled: (setq my-installed-themes '(modus-themes sweet-theme + wildcharm-theme poet-theme - haki-theme + moe-theme solarized-theme)) @@ -618,10 +619,12 @@ New in emacs 28, native compilation can be enabled: (setq *coding-themes* '(modus-operandi-tritanopia + moe-light solarized-selenized-light + moe-dark solarized-selenized-dark sweet - haki + wildcharm modus-vivendi-tritanopia)) (setq *writing-themes* @@ -1385,6 +1388,21 @@ from debian contrib (add-hook 'lisp-mode-hook 'linum-mode) + +(setq +common-lisp-package-template+ + " +(defpackage #:%s + (:use #:cl)) + +(in-package #:%s) +") + +(defun insert-cl-defpackage (name) + (interactive "sName: ") + (insert + (format +common-lisp-package-template+ name name))) + + #+end_src -- cgit v1.2.3