diff options
| author | azureazure <azureazure@disroot.org> | 2026-01-31 21:01:48 +0100 |
|---|---|---|
| committer | azureazure <azureazure@disroot.org> | 2026-01-31 21:01:48 +0100 |
| commit | 916dc0326d5278bda9cd82e07651239db7f14634 (patch) | |
| tree | bdbfe21ad9df5a410d3f0ad1c2afab6712c1a487 /writing.el | |
| parent | aed94b16cd3c16bdb05d7eb94fb4ffe01f44c6c8 (diff) | |
| download | dotemacs-916dc0326d5278bda9cd82e07651239db7f14634.tar.gz | |
move some files around, drop org-roam-ui in favor of org-roam-graph
Diffstat (limited to 'writing.el')
| -rw-r--r-- | writing.el | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/writing.el b/writing.el new file mode 100644 index 0000000..9641e62 --- /dev/null +++ b/writing.el @@ -0,0 +1,40 @@ +(setq org-directory "~/Documents/org/") +(setq org-agenda-files '("agenda.org")) + +(use-package org + :hook + ((org-mode . visual-line-mode) + (org-mode . turn-on-org-cdlatex)) + :config + (setq org-export-with-smart-quotes t + org-html-validation-link nil)) + +(use-package org-roam + :init + (make-directory "~/Documents/roam" t) + :custom + (org-roam-directory "~/Documents/roam") + :bind + (("C-c r i" . org-roam-node-insert) + ("C-c r f" . org-roam-node-find) + ("C-c r l" . org-roam-buffer-toggle) + ("C-c r t a" . org-roam-tag-add) + ("C-c r t r" . org-roam-tag-remove) + ("C-c r g" . org-roam-graph)) + :config + (require 'org-roam-export) + (org-roam-db-autosync-mode)) + +;; (use-package org-roam-ui +;; :straight +;; (:host github :repo "org-roam/org-roam-ui" :branch "main" :files ("*.el" "out")) +;; :after org-roam +;; :bind +;; (("C-c r o" . org-roam-ui-open)) +;; :config +;; (setq org-roam-ui-sync-theme t +;; org-roam-ui-follow t +;; org-roam-ui-update-on-save t)) + +(use-package cdlatex) +(use-package auctex) |
