summaryrefslogtreecommitdiff
path: root/.emacs.d/modules/thanos-packages.el
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/modules/thanos-packages.el')
-rw-r--r--.emacs.d/modules/thanos-packages.el12
1 files changed, 9 insertions, 3 deletions
diff --git a/.emacs.d/modules/thanos-packages.el b/.emacs.d/modules/thanos-packages.el
index 342843c..c27457a 100644
--- a/.emacs.d/modules/thanos-packages.el
+++ b/.emacs.d/modules/thanos-packages.el
@@ -32,7 +32,9 @@
(require 'package)
;; Install straight.el
+
(defvar bootstrap-version)
+
(let ((bootstrap-file
(expand-file-name
"straight/repos/straight.el/bootstrap.el"
@@ -59,14 +61,18 @@
visual-fill-column rainbow-delimiters eshell-git-prompt helpful password-store
json-mode ement magit corfu orderless consult pdf-tools markdown-mode eat doom-themes
org-auto-tangle sly eat nov eshell-syntax-highlighting emojify flycheck vterm doom-modeline
- telega transmission gptel nerd-icons-dired sudo-edit mu4e-alert magit-todos)
- "Packages to install.")
+ telega transmission gptel nerd-icons-dired sudo-edit mu4e-alert magit-todos jinx)
+ "List of packages to install.")
+
+(setf straight-recipe-overrides
+ '((transmission :type git :host nil :repo "[email protected]:/var/git/transmission")
+ (yeetube :type git :host nil :repo "[email protected]:/var/git/yeetube")))
(defvar thanos/custom-packages
'((yeetube :local-repo "~/Dev/emacs-lisp/yeetube")
(gnosis :local-repo "~/Dev/emacs-lisp/gnosis")
(copilot :host github :repo "zerolfx/copilot.el" :files ("dist" "*.el")))
- "Pacakges I'm working on locally.")
+ "Custom package recipes.")
;; Get packages via straight
(cl-loop for package in (append thanos/custom-packages thanos/packages)