Remove some vestigial stuff
[~bandali/configs] / .emacs.d / lisp / bandali-org.el
CommitLineData
4c05c418
AB
1;;; bandali-org.el --- bandali's Org setup -*- lexical-binding: t; -*-
2
3;; Copyright (C) 2018-2020 Amin Bandali
4
5;; Author: Amin Bandali <bandali@gnu.org>
6;; Keywords: calendar, data, docs, hypermedia, outlines
7
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.
12
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.
17
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/>.
20
21;;; Commentary:
22
23;; My set up for Org (org-mode) and all things Org.
24
25;;; Code:
26
c84be134
AB
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
0596e3cf 31 org-id-locations-file (b/var "org/id-locations.el")
c84be134
AB
32 org-link-email-description-format "Email %c: %s" ; %.30s
33 org-highlight-latex-and-related '(entities)
34 org-use-speed-commands t
35 org-startup-folded 'content
36 org-catch-invisible-edits 'show-and-error
37 org-log-done 'time
38 org-pretty-entities t
39 org-agenda-files '("~/usr/org/todos/personal.org"
40 "~/usr/org/todos/habits.org"
41 "~/src/git/masters-thesis/todo.org")
42 org-agenda-start-on-weekday 0
43 org-agenda-time-leading-zero t
44 org-habit-graph-column 44
45 org-latex-packages-alist '(("" "listings") ("" "color")))
f7910e3d
AB
46 (add-to-list 'org-structure-template-alist '("L" . "src emacs-lisp") t)
47 (add-to-list 'org-modules 'org-habit)
c84be134 48 (custom-set-faces
c84be134
AB
49 '(org-latex-and-related ((t (:foreground "#b294bb")))))
50 ;; local key bindings
51 (define-key org-mode-map (kbd "M-L") #'org-insert-last-stored-link)
52 (define-key org-mode-map (kbd "M-O") #'org-toggle-link-display)
53 ;; hooks
54 (add-hook 'org-mode-hook #'org-indent-mode)
55 (add-hook 'org-mode-hook #'auto-fill-mode)
56 (add-hook 'org-mode-hook #'flyspell-mode)
57
58 ;; asynchronous tangle, using emacs-async to asynchronously tangle an
59 ;; org file. closely inspired by
60 ;; https://github.com/dieggsy/dotfiles/tree/cc10edf7701958eff1cd94d4081da544d882a28c/emacs.d#dotfiles
f7910e3d
AB
61 (defvar b/show-async-tangle-results nil
62 "Keep *emacs* async buffers around for later inspection.")
63
64 (defvar b/show-async-tangle-time nil
65 "Show the time spent tangling the file.")
66
67 (defun b/async-babel-tangle ()
68 "Tangle org file asynchronously."
69 (interactive)
70 (let* ((file-tangle-start-time (current-time))
71 (file (buffer-file-name))
72 (file-nodir (file-name-nondirectory file))
73 ;; (async-quiet-switch "-q")
3d7cc479
AB
74 ;; (file-noext (file-name-sans-extension file))
75 )
f7910e3d
AB
76 (async-start
77 `(lambda ()
78 (require 'org)
79 (org-babel-tangle-file ,file))
80 (unless b/show-async-tangle-results
81 `(lambda (result)
82 (if result
83 (message "Tangled %s%s"
84 ,file-nodir
85 (if b/show-async-tangle-time
86 (format " (%.3fs)"
87 (float-time (time-subtract (current-time)
88 ',file-tangle-start-time)))
89 ""))
c84be134
AB
90 (message "Tangling %s failed" ,file-nodir)))))))
91 (add-to-list
92 'safe-local-variable-values
93 '(eval add-hook 'after-save-hook #'b/async-babel-tangle 'append 'local)))
94;; global key bindings
95(global-set-key (kbd "C-c a o a") #'org-agenda)
96
97(with-eval-after-load 'ox-latex
98 (csetq org-latex-listings 'listings
99 ;; org-latex-prefer-user-labels t
100 )
101 (add-to-list 'org-latex-classes
102 '("IEEEtran" "\\documentclass[11pt]{IEEEtran}"
103 ("\\section{%s}" . "\\section*{%s}")
104 ("\\subsection{%s}" . "\\subsection*{%s}")
105 ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
106 ("\\paragraph{%s}" . "\\paragraph*{%s}")
107 ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
108 t)
109 (require 'ox-beamer))
f7910e3d 110
c84be134
AB
111(with-eval-after-load 'ox-extra
112 (declare-function ox-extras-activate "ox-extra" (extras))
113 (ox-extras-activate '(latex-header-blocks ignore-headlines)))
fc9a59fb 114
f7910e3d 115(provide 'bandali-org)
4c05c418 116;;; bandali-org.el ends here