2025-11-18 18:48:05 +11:00
|
|
|
;; (package! benchmark-init)
|
|
|
|
|
|
2025-11-16 20:46:00 +11:00
|
|
|
(package! catppuccin-theme)
|
|
|
|
|
|
2025-11-18 18:48:05 +11:00
|
|
|
;; (package! ef-themes)
|
|
|
|
|
|
2025-11-17 20:44:54 +11:00
|
|
|
(package! nano-modeline)
|
|
|
|
|
|
2025-11-17 01:34:12 +11:00
|
|
|
(package! gptel :recipe (:nonrecursive t))
|
2025-11-16 19:12:34 +11:00
|
|
|
|
2025-11-18 18:48:05 +11:00
|
|
|
(package! rainbow-delimiters)
|
|
|
|
|
|
2025-11-16 19:12:34 +11:00
|
|
|
(package! typst-ts-mode :recipe (:host codeberg :repo "meow_king/typst-ts-mode"))
|
2025-11-16 20:05:31 +11:00
|
|
|
|
|
|
|
|
(package! typst-preview
|
2025-11-17 20:44:54 +11:00
|
|
|
:recipe (:host github :repo "havarddj/typst-preview.el"))
|
2025-11-17 16:07:41 +11:00
|
|
|
|
|
|
|
|
(package! org :recipe
|
|
|
|
|
(:host nil :repo "https://git.tecosaur.net/mirrors/org-mode.git" :remote "mirror" :fork
|
2025-11-17 20:44:54 +11:00
|
|
|
(:host nil :repo "https://git.tecosaur.net/tec/org-mode.git" :branch "dev" :remote "tecosaur")
|
|
|
|
|
:files
|
|
|
|
|
(:defaults "etc")
|
|
|
|
|
:build t :pre-build
|
|
|
|
|
(with-temp-file "org-version.el"
|
|
|
|
|
(require 'lisp-mnt)
|
|
|
|
|
(let
|
|
|
|
|
((version
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(insert-file-contents "lisp/org.el")
|
|
|
|
|
(lm-header "version")))
|
|
|
|
|
(git-version
|
|
|
|
|
(string-trim
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(call-process "git" nil t nil "rev-parse" "--short" "HEAD")
|
|
|
|
|
(buffer-string)))))
|
|
|
|
|
(insert
|
|
|
|
|
(format "(defun org-release () \"The release version of Org.\" %S)\n" version)
|
|
|
|
|
(format "(defun org-git-version () \"The truncate git commit hash of Org mode.\" %S)\n" git-version)
|
|
|
|
|
"(provide 'org-version)\n"))))
|
2025-11-17 16:07:41 +11:00
|
|
|
:pin nil)
|
|
|
|
|
(unpin! org)
|