diff options
Diffstat (limited to 'init-el.org')
-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 |