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)
|
|
|
|
|
|
|
|
|
|
(package! rainbow-delimiters)
|
|
|
|
|
|
2025-11-21 01:05:13 +11:00
|
|
|
(package! leetcode)
|
|
|
|
|
|
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
|
2025-12-05 19:17:15 +11:00
|
|
|
(:host nil :repo "https://code.tecosaur.net/mirrors/org-mode.git"
|
|
|
|
|
:remote "mirror" :fork
|
|
|
|
|
(:host nil :repo "https://code.tecosaur.net/tec/org-mode.git"
|
|
|
|
|
:branch "dev" :remote "tecosaur")
|
|
|
|
|
:files (:defaults "etc") :build t :pre-build
|
|
|
|
|
(with-temp-file "lisp/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)
|