diff options
-rw-r--r-- | init.org | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -795,11 +795,18 @@ latest version of Org from upstream. (provide 'org-version) #+end_src +We will use the =org-plus-contrib= package to get the whole deal: + +#+begin_src emacs-lisp +(straight-use-package 'org-plus-contrib) +#+end_src + And here's where my actual Org configurations begin: #+begin_src emacs-lisp -(use-package org-plus-contrib - :defer 1 +(use-package org + :straight nil + :defer 0.5 :config (setq org-src-tab-acts-natively t org-src-preserve-indentation nil |