summaryrefslogtreecommitdiffstats
path: root/.emacs.d/lisp/bandali-org.el
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/lisp/bandali-org.el')
-rw-r--r--.emacs.d/lisp/bandali-org.el46
1 files changed, 24 insertions, 22 deletions
diff --git a/.emacs.d/lisp/bandali-org.el b/.emacs.d/lisp/bandali-org.el
index cd40b1e..940e556 100644
--- a/.emacs.d/lisp/bandali-org.el
+++ b/.emacs.d/lisp/bandali-org.el
@@ -1,6 +1,6 @@
;;; bandali-org.el --- bandali's Org setup -*- lexical-binding: t; -*-
-;; Copyright (C) 2018-2020 Amin Bandali
+;; Copyright (C) 2018-2022 Amin Bandali
;; Author: Amin Bandali <bandali@gnu.org>
;; Keywords: calendar, data, docs, hypermedia, outlines
@@ -25,24 +25,25 @@
;;; Code:
(with-eval-after-load 'org
- (csetq org-src-tab-acts-natively t
- org-src-preserve-indentation nil
- org-edit-src-content-indentation 0
- org-id-locations-file (b/var "org/id-locations.el")
- org-link-email-description-format "Email %c: %s" ; %.30s
- org-highlight-latex-and-related '(entities)
- org-use-speed-commands t
- org-startup-folded 'content
- org-catch-invisible-edits 'show-and-error
- org-log-done 'time
- org-pretty-entities t
- org-agenda-files '("~/usr/org/todos/personal.org"
- "~/usr/org/todos/habits.org"
- "~/src/git/masters-thesis/todo.org")
- org-agenda-start-on-weekday 0
- org-agenda-time-leading-zero t
- org-habit-graph-column 44
- org-latex-packages-alist '(("" "listings") ("" "color")))
+ (setq
+ org-src-tab-acts-natively t
+ org-src-preserve-indentation nil
+ org-edit-src-content-indentation 0
+ org-id-locations-file (b/var "org/id-locations.el")
+ org-link-email-description-format "Email %c: %s" ; %.30s
+ org-highlight-latex-and-related '(entities)
+ org-use-speed-commands t
+ org-startup-folded 'content
+ org-catch-invisible-edits 'show-and-error
+ org-log-done 'time
+ org-pretty-entities t
+ org-agenda-files '("~/usr/org/todos/personal.org"
+ "~/usr/org/todos/habits.org"
+ "~/src/git/masters-thesis/todo.org")
+ org-agenda-start-on-weekday 0
+ org-agenda-time-leading-zero t
+ org-habit-graph-column 44
+ org-latex-packages-alist '(("" "listings") ("" "color")))
(add-to-list 'org-structure-template-alist '("L" . "src emacs-lisp") t)
(add-to-list 'org-modules 'org-habit)
(custom-set-faces
@@ -95,9 +96,10 @@
(global-set-key (kbd "C-c a o a") #'org-agenda)
(with-eval-after-load 'ox-latex
- (csetq org-latex-listings 'listings
- ;; org-latex-prefer-user-labels t
- )
+ (setq
+ org-latex-listings 'listings
+ ;; org-latex-prefer-user-labels t
+ )
(add-to-list 'org-latex-classes
'("IEEEtran" "\\documentclass[11pt]{IEEEtran}"
("\\section{%s}" . "\\section*{%s}")