Drop `csetq' macro and use good old `setq' and `setq-default'.
[~bandali/configs] / .emacs.d / lisp / bandali-org.el
index cd40b1e..940e556 100644 (file)
@@ -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
 ;;; 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
 (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}")