]> git.donarmstrong.com Git - lib.git/commitdiff
put org-gcal with org mode
authorDon Armstrong <don@donarmstrong.com>
Wed, 10 Jan 2018 01:16:33 +0000 (17:16 -0800)
committerDon Armstrong <don@donarmstrong.com>
Wed, 10 Jan 2018 01:16:33 +0000 (17:16 -0800)
emacs_el/configuration/don-configuration.org

index 2347cc8e9dd4e1e9a98ffa5708425572469e4f69..37f7e56aeae1602487439c5f2f87e454dbe64c8d 100644 (file)
@@ -637,24 +637,12 @@ value, scrolling continues until there is no more output.
               ("fixme" "{"))
             )
       )
+    (setq font-latex-fontify-script nil)
+    (setq font-latex-fontify-sectioning (quote color))
+    (setq font-latex-script-display (quote (nil)))
   )
 
 #+END_SRC
-*** Org-Gcal
-#+BEGIN_SRC emacs-lisp
-  (use-package calfw
-    :ensure f
-    )
-  (use-package calfw-org
-    :ensure f
-    )
-  (use-package org-gcal
-    :ensure f
-    :config '((if (file-readable-p "~/.hide/org_gcal.el")
-                  (load-file "~/.hide/org_gcal.el"))
-              )
-    )
-#+END_SRC
 ** ESS
 #+BEGIN_SRC emacs-lisp
   (use-package ess
@@ -1696,6 +1684,21 @@ From http://julien.danjou.info/projects/emacs-packages#rainbow-mode, this colori
             (unless (bolp) (insert "\n"))))))))))))
 
 #+END_SRC
+** Org-Gcal
+#+BEGIN_SRC emacs-lisp
+  (use-package calfw
+    :ensure f
+    )
+  (use-package calfw-org
+    :ensure f
+    )
+  (use-package org-gcal
+    :ensure f
+    :config '((if (file-readable-p "~/.hide/org_gcal.el")
+                  (load-file "~/.hide/org_gcal.el"))
+              )
+    )
+#+END_SRC
 ** End use-package
 #+BEGIN_SRC emacs-lisp
   )