add back org-roam
This commit is contained in:
parent
31c87d3a27
commit
bf51c9a76a
@ -16,7 +16,7 @@
|
|||||||
- [[#enable-table-of-contents][Enable Table of Contents]]
|
- [[#enable-table-of-contents][Enable Table of Contents]]
|
||||||
- [[#enable-org-bullets][Enable org bullets]]
|
- [[#enable-org-bullets][Enable org bullets]]
|
||||||
- [[#block-expansion][Block expansion]]
|
- [[#block-expansion][Block expansion]]
|
||||||
- [[#caldav-sync][caldav sync]]
|
- [[#org-roam][Org Roam]]
|
||||||
- [[#completion-framework][Completion Framework]]
|
- [[#completion-framework][Completion Framework]]
|
||||||
- [[#completion-at-point][COMPLETION AT POINT]]
|
- [[#completion-at-point][COMPLETION AT POINT]]
|
||||||
- [[#lsp][LSP]]
|
- [[#lsp][LSP]]
|
||||||
@ -143,7 +143,7 @@
|
|||||||
** General Settings
|
** General Settings
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
;; Must do this so the agenda knows where to look for my files
|
;; Must do this so the agenda knows where to look for my files
|
||||||
(setq org-agenda-files '("~/everything"))
|
(setq org-agenda-files (directory-files-recursively "~/everything/" "\\.org$"))
|
||||||
|
|
||||||
;; When a TODO is set to a done state, record a timestamp
|
;; When a TODO is set to a done state, record a timestamp
|
||||||
(setq org-log-done 'time)
|
(setq org-log-done 'time)
|
||||||
@ -193,16 +193,27 @@
|
|||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(require 'org-tempo)
|
(require 'org-tempo)
|
||||||
#+end_src
|
#+end_src
|
||||||
** Org caldav
|
|
||||||
|
** Org Roam
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package org-caldav
|
(use-package org-roam
|
||||||
:ensure t
|
:ensure t
|
||||||
|
:custom
|
||||||
|
(org-roam-directory "~/everything")
|
||||||
|
(org-roam-completion-everywhere t)
|
||||||
|
(org-roam-dailies-capture-templates
|
||||||
|
'(("d" "default" entry "* %<%I:%M %p>: %?"
|
||||||
|
:if-new (file+head "%<%Y-%m-%d>.org" "#+title: %<%Y-%m-%d>\n"))))
|
||||||
|
:bind (("C-c n l" . org-roam-buffer-toggle)
|
||||||
|
("C-c n f" . org-roam-node-find)
|
||||||
|
("C-c n g" . org-roam-graph)
|
||||||
|
("C-c n i" . org-roam-node-insert)
|
||||||
|
("C-c n c" . org-roam-capture)
|
||||||
|
;; Dailies
|
||||||
|
("C-c n j" . org-roam-dailies-capture-today))
|
||||||
:config
|
:config
|
||||||
(setq org-caldav-url "https://nextcloud.michaelthomson.dev/remote.php/dav/calendars/mthomson")
|
(setq org-roam-node-display-template (concat "${title:*} " (propertize "${tags:10}" 'face 'org-tag)))
|
||||||
(setq org-caldav-calendar-id "personal")
|
(org-roam-db-autosync-mode))
|
||||||
(setq org-caldav-inbox "~/everything/calendar.org")
|
|
||||||
(setq org-caldav-files nil)
|
|
||||||
(setq org-icalendar-timezone "America/Toronto"))
|
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
* Completion Framework
|
* Completion Framework
|
||||||
|
Loading…
x
Reference in New Issue
Block a user