aboutsummaryrefslogtreecommitdiff
path: root/org.el
diff options
context:
space:
mode:
authorlemurianmage <azureazure@disroot.org>2026-01-30 15:08:21 +0100
committerlemurianmage <azureazure@disroot.org>2026-01-30 15:08:21 +0100
commitaed94b16cd3c16bdb05d7eb94fb4ffe01f44c6c8 (patch)
tree5696b7f09aa26ae4ba35fd57fbb4e04f47228ce5 /org.el
parentbcb6044594c3451a3186425be9b3f4929558a00a (diff)
downloaddotemacs-aed94b16cd3c16bdb05d7eb94fb4ffe01f44c6c8.tar.gz
various little changes
Diffstat (limited to 'org.el')
-rw-r--r--org.el15
1 files changed, 12 insertions, 3 deletions
diff --git a/org.el b/org.el
index ffde26f..6d7a7bb 100644
--- a/org.el
+++ b/org.el
@@ -5,7 +5,10 @@
:hook
((org-mode . visual-line-mode))
:config
- (setq org-export-with-smart-quotes t))
+ (setq org-export-with-smart-quotes t)
+ ;; (dolist (i '("amsmath" "amssymb" "mathtools" "mathrsfs"))
+ ;; (add-to-list 'org-latex-packages-alist '("" i t)))
+ )
(use-package org-roam
:init
@@ -17,6 +20,7 @@
("C-c r f" . org-roam-node-find)
("C-c r l" . org-roam-buffer-toggle))
:config
+ (require 'org-roam-export)
(org-roam-db-autosync-mode))
(use-package org-roam-ui
@@ -28,6 +32,11 @@
:config
(setq org-roam-ui-sync-theme t
org-roam-ui-follow t
- org-roam-ui-update-on-save t
- org-roam-ui-open-on-start t))
+ org-roam-ui-update-on-save t))
+
+(use-package xenops
+ :hook
+ ((org-mode . xenops-mode))
+ :config
+ (setq xenops-reveal-on-entry t))