summaryrefslogtreecommitdiffstats
path: root/init.org
diff options
context:
space:
mode:
authorAmin Bandali <bandali@gnu.org>2018-12-24 13:02:34 -0500
committerAmin Bandali <bandali@gnu.org>2018-12-24 13:05:54 -0500
commitf59c27809dfc5d1417863d686bfdccabbbf7ef7e (patch)
treefa6881575a0e241a46143c986f2ac5fbf4769dc5 /init.org
parent126528935bb71449df251970fe367849a62beb92 (diff)
downloadconfigs-f59c27809dfc5d1417863d686bfdccabbbf7ef7e.tar.gz
configs-f59c27809dfc5d1417863d686bfdccabbbf7ef7e.tar.xz
configs-f59c27809dfc5d1417863d686bfdccabbbf7ef7e.zip
[emacs][wip] enable the rest of my org customizations
Diffstat (limited to '')
-rw-r--r--init.org32
1 files changed, 17 insertions, 15 deletions
diff --git a/init.org b/init.org
index 42fba09..5f1b7df 100644
--- a/init.org
+++ b/init.org
@@ -750,7 +750,18 @@ customizing it.
'auto-compile-inhibit-compile-detached-git-head))
#+end_src
-*** Org
+*** [[https://orgmode.org/][Org]]
+
+#+begin_quote
+Org mode is for keeping notes, maintaining TODO lists, planning
+projects, and authoring documents with a fast and effective plain-text
+system.
+#+end_quote
+
+In short, my favourite way of life.
+
+First, we have to resort to a [[https://github.com/raxod502/straight.el#installing-org-with-straightel][hack]] to be able to use the correct
+latest version of Org from upstream.
#+begin_src emacs-lisp
(use-package git)
@@ -781,24 +792,13 @@ customizing it.
"--abbrev=0"
"HEAD")))))
- (provide 'org-version)
-
- (use-package org
- :defer 0.8) ; or org-plus-contrib if desired
+(provide 'org-version)
#+end_src
-*** COMMENT [[https://orgmode.org/][Org mode]]
-
-#+begin_quote
-Org mode is for keeping notes, maintaining TODO lists, planning
-projects, and authoring documents with a fast and effective plain-text
-system.
-#+end_quote
-
-In short, my favourite way of life.
+And here's where my actual Org configurations begin:
#+begin_src emacs-lisp
-(use-package org
+(use-package org-plus-contrib
:defer 1
:config
(setq org-src-tab-acts-natively t
@@ -830,6 +830,7 @@ In short, my favourite way of life.
'(org-latex-and-related ((t (:foreground "#b294bb")))))
(use-package ox-latex
+ :straight nil
:after ox
:config
(setq org-latex-listings 'listings
@@ -847,6 +848,7 @@ In short, my favourite way of life.
t))
(use-package ox-beamer
+ :straight nil
:after ox)
(use-package orgalist