Add org-roam-ui
This commit is contained in:
parent
bebfbf48f4
commit
ac3eff2934
3 changed files with 21 additions and 1 deletions
|
|
@ -20,3 +20,18 @@
|
|||
(setq lsp-tailwindcss-experimental-class-regex [
|
||||
[ "cls\\(([^)]*)\\)" "\"([^']*)\"" ]
|
||||
[ "cls\\s*:=\\s*\\(?([^,^\\n^\\)]*)" "\"([^']*)\"" ]]))
|
||||
|
||||
(use-package! websocket
|
||||
:after org-roam)
|
||||
|
||||
(use-package! org-roam-ui
|
||||
:after org-roam ;; or :after org
|
||||
;; normally we'd recommend hooking orui after org-roam, but since org-roam does not have
|
||||
;; a hookable mode anymore, you're advised to pick something yourself
|
||||
;; if you don't care about startup time, use
|
||||
;; :hook (after-init . org-roam-ui-mode)
|
||||
: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))
|
||||
|
|
|
|||
|
|
@ -1 +1,4 @@
|
|||
(package! lsp-tailwindcss)
|
||||
|
||||
(unpin! org-roam)
|
||||
(package! org-roam-ui)
|
||||
|
|
|
|||
|
|
@ -20,7 +20,9 @@ in {
|
|||
rnix-lsp
|
||||
nixfmt
|
||||
|
||||
sqlite # Used by org-roam
|
||||
# Used by org-roam
|
||||
sqlite
|
||||
graphviz
|
||||
];
|
||||
|
||||
services.emacs = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue