diff options
author | Thanos Apollo <[email protected]> | 2024-01-09 11:38:43 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-01-09 11:39:04 +0200 |
commit | 79e03b5aab805083fc7d92f15bace86ff1e9223e (patch) | |
tree | 0bbb53bcc0fd9a6b07bd0120412c440c780edf99 /.emacs.d/modules/thanos-packages.el | |
parent | cf3150cd2ca8c8e2677bf5ffd4f72ac67936a1da (diff) |
emacs:(org) use jinx
Diffstat (limited to '.emacs.d/modules/thanos-packages.el')
-rw-r--r-- | .emacs.d/modules/thanos-packages.el | 12 |
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) |