diff options
author | Case Duckworth | 2021-09-30 18:22:58 -0500 |
---|---|---|
committer | Case Duckworth | 2021-09-30 18:22:58 -0500 |
commit | c57cdb05c71669e760076d637e28d20796819d19 (patch) | |
tree | a8f03aa2ad2c7514ebcc3c63792f3fc860aa16f9 | |
parent | Merge branch 'main' of tildegit.org:acdw/emacs (diff) | |
download | emacs-c57cdb05c71669e760076d637e28d20796819d19.tar.gz emacs-c57cdb05c71669e760076d637e28d20796819d19.zip |
Update org-mode recipe
-rw-r--r-- | init.el | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/init.el b/init.el index fff1782..afc3e6e 100644 --- a/init.el +++ b/init.el | |||
@@ -1183,8 +1183,8 @@ specific to most general, they are these: | |||
1183 | (crux-reopen-as-root-mode +1)) | 1183 | (crux-reopen-as-root-mode +1)) |
1184 | 1184 | ||
1185 | (setup (:straight-if (define-repeat-map | 1185 | (setup (:straight-if (define-repeat-map |
1186 | :host nil | 1186 | :host nil |
1187 | :repo "https://tildegit.org/acdw/define-repeat-map.el") | 1187 | :repo "https://tildegit.org/acdw/define-repeat-map.el") |
1188 | (acdw/system :home)) | 1188 | (acdw/system :home)) |
1189 | 1189 | ||
1190 | (require 'define-repeat-map ; just for me | 1190 | (require 'define-repeat-map ; just for me |
@@ -1793,8 +1793,19 @@ browser defined in `browse-url-secondary-browser-function'." | |||
1793 | ((string-suffix-p "~" pattern) | 1793 | ((string-suffix-p "~" pattern) |
1794 | `(orderless-flex . ,(substring pattern 0 -1)))))) | 1794 | `(orderless-flex . ,(substring pattern 0 -1)))))) |
1795 | 1795 | ||
1796 | (setup (:straight org | 1796 | (setup (:straight (org |
1797 | org-contrib) | 1797 | :type git |
1798 | :repo "https://git.savannah.gnu.org/git/emacs/org-mode.git" | ||
1799 | :local-repo "org" | ||
1800 | :depth full | ||
1801 | :pre-build (straight-recipes-org-elpa--build) | ||
1802 | :build (:not autoloads) | ||
1803 | :files (:defaults | ||
1804 | "lisp/*.el" | ||
1805 | ("etc/styles/" "etc/styles/*"))) | ||
1806 | (org-contrib | ||
1807 | :type git | ||
1808 | :repo "https://git.sr.ht/~bzg/org-contrib")) | ||
1798 | (:also-load acdw-org) | 1809 | (:also-load acdw-org) |
1799 | (require 'chd nil 'noerror) | 1810 | (require 'chd nil 'noerror) |
1800 | (:option org-adapt-indentation nil | 1811 | (:option org-adapt-indentation nil |