]> git.donarmstrong.com Git - lib.git/blobdiff - emacs_el/configuration/org-mode-configuration.el
remove org-latex which no longer exists
[lib.git] / emacs_el / configuration / org-mode-configuration.el
index 67c41193d9661c0572e97e640396c222adb023f0..a8b427ce8769107b1b4db41d82e79aacc530986e 100644 (file)
              "~/projects/fh/fh.org")))
 
 (setq org-global-properties '(("Effort_ALL 0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00")))
-(setq org-columns-default-format "%40ITEM(Task) %TAGS %PRIORITY %TODO %13SCHEDULED %13DEADLINE %6Effort{:}  %CLOCKSUM")
+(setq org-columns-default-format "%40ITEM(Task) %6Effort{:} %CLOCKSUM %PRIORITY %TODO %13SCHEDULED %13DEADLINE %TAGS")
 
 (setq org-default-notes-file "~/projects/notes/notes.org")
 (setq org-capture-templates  ;; mail-specific note template, identified by "m"
@@ -416,14 +416,17 @@ Maildir, or by Message-ID."
 ;; org mode ical export
 (setq org-icalendar-timezone "America/Los_Angeles")
 (setq org-icalendar-use-scheduled '(todo-start event-if-todo))
-(setq org-icalendar-store-UID t)
+;; we already add the id manually
+;; (setq org-icalendar-store-UID t)
 
 ;; org babel support
 (org-babel-do-load-languages
  'org-babel-load-languages
  '((emacs-lisp . t )
    (R . t)
-   (latex . t)))
+   (latex . t)
+   (ditaa . t)
+   ))
 ;; org-babel-by-backend
 (defmacro org-babel-by-backend (&rest body)
    `(case (if (boundp 'backend) 
@@ -432,28 +435,28 @@ Maildir, or by Message-ID."
 
 
 
-;; org latex
-;; stolen from http://kieranhealy.org/esk/kjhealy.html
-(require 'org-latex)   
-;; Choose either listings or minted for exporting source code blocks.
-;; Using minted (as here) requires pygments be installed. To use the
-;; default listings package instead, use
-;; (setq org-latex-listings t)
-;; and change references to "minted" below to "listings"
-; (setq org-latex-listings 'minted)
-
-;; default settings for minted code blocks
-(setq org-latex-minted-options
-      '(;("frame" "single")
-        ("bgcolor" "bg") ; bg will need to be defined in the preamble of your document. It's defined in org-preamble-pdflatex.sty and org-preamble-xelatex.sty below.
-        ("fontsize" "\\small")
-        ))
-;; turn off the default toc behavior; deal with it properly in headers to files.
-(defun org-latex-no-toc (depth)  
-  (when depth
-    (format "%% Org-mode is exporting headings to %s levels.\n"
-            depth)))
-(setq org-latex-format-toc-function 'org-latex-no-toc)
+;; ;; org latex
+;; ;; stolen from http://kieranhealy.org/esk/kjhealy.html
+;; (require 'org-latex)   
+;; ;; Choose either listings or minted for exporting source code blocks.
+;; ;; Using minted (as here) requires pygments be installed. To use the
+;; ;; default listings package instead, use
+;; ;; (setq org-latex-listings t)
+;; ;; and change references to "minted" below to "listings"
+;; ; (setq org-latex-listings 'minted)
+;; 
+;; ;; default settings for minted code blocks
+;; (setq org-latex-minted-options
+;;       '(;("frame" "single")
+;;         ("bgcolor" "bg") ; bg will need to be defined in the preamble of your document. It's defined in org-preamble-pdflatex.sty and org-preamble-xelatex.sty below.
+;;         ("fontsize" "\\small")
+;;         ))
+;; ;; turn off the default toc behavior; deal with it properly in headers to files.
+;; (defun org-latex-no-toc (depth)  
+;;   (when depth
+;;     (format "%% Org-mode is exporting headings to %s levels.\n"
+;;             depth)))
+;; (setq org-latex-format-toc-function 'org-latex-no-toc)
 
 (require 'ox-latex)
 (add-to-list 'org-latex-classes
@@ -465,6 +468,18 @@ Maildir, or by Message-ID."
                ("\\paragraph{%s}" . "\\paragraph*{%s}")
                ("\\subparagraph{%s}" . "\\subparagraph*{%s}")))
 
+(add-to-list 'org-latex-classes
+             '("beamer"
+               "\\documentclass[ignorenonframetext]{beamer}
+[NO-DEFAULT-PACKAGES]
+[PACKAGES]
+[EXTRA]"
+               ("\\section{%s}" . "\\section*{%s}")
+               ("\\subsection{%s}" . "\\subsection*{%s}")
+               ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
+               ("\\paragraph{%s}" . "\\paragraph*{%s}")
+               ("\\subparagraph{%s}" . "\\subparagraph*{%s}")))
+
 (add-to-list 'org-latex-classes
              '("membook"
                "\\documentclass[11pt,oneside]{memoir}\n"
@@ -526,6 +541,9 @@ Maildir, or by Message-ID."
       (setq ad-return-value contents)
     ad-do-it))
 
+;; keep latex logfiles
+
+(setq org-latex-remove-logfiles nil)
 
 ;; helper functions
 (defun bh/is-project-p ()
@@ -916,3 +934,8 @@ A prefix arg forces clock in of the default task."
     (org-with-point-at clock-in-to-task
       (org-clock-in nil))))
 
+
+; allow for zero-width-space to be a break in regexp too
+(setcar org-emphasis-regexp-components "​ [:space:] \t('\"{")
+(setcar (nthcdr 1 org-emphasis-regexp-components) "​ [:space:]- \t.,:!?;'\")}\\")
+(org-set-emph-re 'org-emphasis-regexp-components org-emphasis-regexp-components)