1 ;;; bandali-org.el --- bandali's Org setup -*- lexical-binding: t; -*-
3 ;; Copyright (C) 2018-2020 Amin Bandali
5 ;; Author: Amin Bandali <bandali@gnu.org>
6 ;; Keywords: calendar, data, docs, hypermedia, outlines
8 ;; This program is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation, either version 3 of the License, or
11 ;; (at your option) any later version.
13 ;; This program is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with this program. If not, see <https://www.gnu.org/licenses/>.
23 ;; My set up for Org (org-mode) and all things Org.
27 (with-eval-after-load 'org
28 (csetq org-src-tab-acts-natively t
29 org-src-preserve-indentation nil
30 org-edit-src-content-indentation
0
31 org-link-email-description-format
"Email %c: %s" ; %.30s
32 org-highlight-latex-and-related
'(entities)
33 org-use-speed-commands t
34 org-startup-folded
'content
35 org-catch-invisible-edits
'show-and-error
38 org-agenda-files
'("~/usr/org/todos/personal.org"
39 "~/usr/org/todos/habits.org"
40 "~/src/git/masters-thesis/todo.org")
41 org-agenda-start-on-weekday
0
42 org-agenda-time-leading-zero t
43 org-habit-graph-column
44
44 org-latex-packages-alist
'(("" "listings") ("" "color")))
45 (add-to-list 'org-structure-template-alist
'("L" .
"src emacs-lisp") t
)
46 (add-to-list 'org-modules
'org-habit
)
48 '(org-block-begin-line
49 ((t (:foreground
"#5a5b5a" :background
"#1d1f21"))))
50 '(org-block ((t (:background
"#1d1f21"))))
51 '(org-latex-and-related ((t (:foreground
"#b294bb")))))
53 (define-key org-mode-map
(kbd "M-L") #'org-insert-last-stored-link
)
54 (define-key org-mode-map
(kbd "M-O") #'org-toggle-link-display
)
56 (add-hook 'org-mode-hook
#'org-indent-mode
)
57 (add-hook 'org-mode-hook
#'auto-fill-mode
)
58 (add-hook 'org-mode-hook
#'flyspell-mode
)
60 ;; asynchronous tangle, using emacs-async to asynchronously tangle an
61 ;; org file. closely inspired by
62 ;; https://github.com/dieggsy/dotfiles/tree/cc10edf7701958eff1cd94d4081da544d882a28c/emacs.d#dotfiles
63 (defvar b
/show-async-tangle-results nil
64 "Keep *emacs* async buffers around for later inspection.")
66 (defvar b
/show-async-tangle-time nil
67 "Show the time spent tangling the file.")
69 (defun b/async-babel-tangle
()
70 "Tangle org file asynchronously."
72 (let* ((file-tangle-start-time (current-time))
73 (file (buffer-file-name))
74 (file-nodir (file-name-nondirectory file
))
75 ;; (async-quiet-switch "-q")
76 ;; (file-noext (file-name-sans-extension file))
81 (org-babel-tangle-file ,file
))
82 (unless b
/show-async-tangle-results
85 (message "Tangled %s%s"
87 (if b
/show-async-tangle-time
89 (float-time (time-subtract (current-time)
90 ',file-tangle-start-time
)))
92 (message "Tangling %s failed" ,file-nodir
)))))))
94 'safe-local-variable-values
95 '(eval add-hook
'after-save-hook
#'b
/async-babel-tangle
'append
'local
)))
96 ;; global key bindings
97 (global-set-key (kbd "C-c a o a") #'org-agenda
)
99 (with-eval-after-load 'ox-latex
100 (csetq org-latex-listings
'listings
101 ;; org-latex-prefer-user-labels t
103 (add-to-list 'org-latex-classes
104 '("IEEEtran" "\\documentclass[11pt]{IEEEtran}"
105 ("\\section{%s}" .
"\\section*{%s}")
106 ("\\subsection{%s}" .
"\\subsection*{%s}")
107 ("\\subsubsection{%s}" .
"\\subsubsection*{%s}")
108 ("\\paragraph{%s}" .
"\\paragraph*{%s}")
109 ("\\subparagraph{%s}" .
"\\subparagraph*{%s}"))
111 (require 'ox-beamer
))
113 (with-eval-after-load 'ox-extra
114 (declare-function ox-extras-activate
"ox-extra" (extras))
115 (ox-extras-activate '(latex-header-blocks ignore-headlines
)))
117 (provide 'bandali-org
)
118 ;;; bandali-org.el ends here