From 2c42e116b127f95e57a2f61c4cb18c5c2177b47e Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Wed, 12 May 2021 07:35:40 -0500 Subject: [PATCH] Adding common-lisp org src template --- README.org | 1 + init.el | 1 + 2 files changed, 2 insertions(+) diff --git a/README.org b/README.org index e3f93841..c422edb5 100644 --- a/README.org +++ b/README.org @@ -903,6 +903,7 @@ Part of this config includes some special capture templates for my work as a you (require 'org-tempo) (add-to-list 'org-structure-template-alist '("el" . "src emacs-lisp")) + (add-to-list 'org-structure-template-alist '("cl" . "src common-lisp")) (add-to-list 'org-structure-template-alist '("py" . "src python")) (add-to-list 'org-structure-template-alist '("sh" . "src shell")) (add-to-list 'org-structure-template-alist '("yaml" . "src yaml")) diff --git a/init.el b/init.el index b744a1d4..9311943e 100644 --- a/init.el +++ b/init.el @@ -544,6 +544,7 @@ vertically." (require 'org-tempo) (add-to-list 'org-structure-template-alist '("el" . "src emacs-lisp")) + (add-to-list 'org-structure-template-alist '("cl" . "src common-lisp")) (add-to-list 'org-structure-template-alist '("py" . "src python")) (add-to-list 'org-structure-template-alist '("sh" . "src shell")) (add-to-list 'org-structure-template-alist '("yaml" . "src yaml"))