diff options
| author | azureazure <azureazure@disroot.org> | 2026-01-25 17:30:22 +0100 |
|---|---|---|
| committer | azureazure <azureazure@disroot.org> | 2026-01-25 17:30:22 +0100 |
| commit | bcb6044594c3451a3186425be9b3f4929558a00a (patch) | |
| tree | 3531c879d72e2693d1591f4d19c9a26468ca96cc /org.el | |
| parent | cb838d286f604eed781addae7ba123c070395adc (diff) | |
| download | dotemacs-bcb6044594c3451a3186425be9b3f4929558a00a.tar.gz | |
remove git-gutter and add org-roam configuration
Diffstat (limited to 'org.el')
| -rw-r--r-- | org.el | 28 |
1 files changed, 27 insertions, 1 deletions
@@ -2,6 +2,32 @@ (setq org-agenda-files '("agenda.org")) (use-package org - :hook ((org-mode . visual-line-mode)) + :hook + ((org-mode . visual-line-mode)) :config (setq org-export-with-smart-quotes t)) + +(use-package org-roam + :init + (make-directory "~/Documents/roam" t) + :custom + (org-roam-directory "~/Documents/roam") + :bind + (("C-c r n" . org-roam-node-insert) + ("C-c r f" . org-roam-node-find) + ("C-c r l" . org-roam-buffer-toggle)) + :config + (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 + org-roam-ui-open-on-start t)) + |
