Home Gen496 @ 2025-04-10-12:48

This commit is contained in:
2025-04-10 12:48:29 +02:00
parent 6279807628
commit bb7fa83548
3 changed files with 14 additions and 4 deletions

View File

@@ -0,0 +1,2 @@
(package! copilot
:recipe (:host github :repo "copilot-emacs/copilot.el" :files ("*.el")))

View File

@@ -52,9 +52,6 @@
(package! conventional-commit
:recipe (:host github :repo "akirak/conventional-commit.el" :files ("conventional-commit.el")))
(package! copilot
:recipe (:host github :repo "copilot-emacs/copilot.el" :files ("*.el")))
;; TODO: Remove this when a fix for https://github.com/doomemacs/doomemacs/issues/8286 is included
(package! package-lint :pin "21edc6d0d0eadd2d0a537f422fb9b7b8a3ae6991")
@@ -65,3 +62,8 @@
(package! pandoc-mode)
(package! tramp)
(package! graphviz-dot-mode)
(let ((package-dir(expand-file-name "packages.d" doom-user-dir)))
(when file-directory-p package-dir)
(dolist (file (directory-files package-dir t "\\.el$" t))
(load file)))