diff options
author | colin <colin@cicadas.surf> | 2023-07-20 20:56:20 -0700 |
---|---|---|
committer | colin <colin@cicadas.surf> | 2023-07-20 20:56:20 -0700 |
commit | 9da66ac5f46debbc6a8d02793af572bcdcf1d09f (patch) | |
tree | 252420c10db212f1148fb82530dfc7b7d71bb9b1 | |
parent | cf74bcb4d22d400912ae28336fcb25c7952e704d (diff) |
mo re th em es
-rw-r--r-- | init-el.org | 22 |
1 files 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 |