diff options
author | Nicolas Graves <[email protected]> | 2024-09-14 16:47:16 +0200 |
---|---|---|
committer | jgart <[email protected]> | 2024-09-21 11:05:36 -0500 |
commit | e602b799fb751ab74eb6fe6d395905a962785085 (patch) | |
tree | 1d239ce5e6b3aa5f33a63cd6330bb73b5fe439c1 | |
parent | 730b1f0768884b0c4d2b53203b87d726d02d19da (diff) |
.dir-locals.el: Add tempel snippets.
Change-Id: Ic16f571f26fffee12e478e00c54be55e6eb90831
Signed-off-by: jgart <[email protected]>
-rw-r--r-- | .dir-locals.el | 15 | ||||
-rw-r--r-- | etc/snippets/tempel/scheme-mode.eld (renamed from etc/snippets/tempel/scheme-mode) | 2 | ||||
-rw-r--r-- | etc/snippets/tempel/text-mode.eld (renamed from etc/snippets/tempel/text-mode) | 2 |
3 files changed, 15 insertions, 4 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index d0c25b867b..201ebd4198 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -19,6 +19,21 @@ (locate-dominating-file default-directory ".dir-locals.el"))) + ;; TempEl + (eval . (with-eval-after-load + 'tempel + (if (stringp tempel-path) + (setq tempel-path (list tempel-path))) + (let ((guix-tempel-snippets + (concat + (expand-file-name + "etc/snippets/tempel" + (locate-dominating-file default-directory + ".dir-locals.el")) + "/*.eld"))) + (unless (member guix-tempel-snippets tempel-path) + (add-to-list 'tempel-path guix-tempel-snippets))))) + ;; YASnippet (eval . (with-eval-after-load 'yasnippet diff --git a/etc/snippets/tempel/scheme-mode b/etc/snippets/tempel/scheme-mode.eld index 249f4ce8e3..21a5dd6dee 100644 --- a/etc/snippets/tempel/scheme-mode +++ b/etc/snippets/tempel/scheme-mode.eld @@ -1,5 +1,3 @@ --*- mode: lisp-data -*- - scheme-mode (package... diff --git a/etc/snippets/tempel/text-mode b/etc/snippets/tempel/text-mode.eld index c635b7ee6f..397221b846 100644 --- a/etc/snippets/tempel/text-mode +++ b/etc/snippets/tempel/text-mode.eld @@ -1,5 +1,3 @@ --*- mode: lisp-data -*- - text-mode :when (bound-and-true-p git-commit-mode) (add\ "gnu: Add " |