mirror of
https://github.com/org-roam/org-roam
synced 2025-08-09 12:57:22 -05:00
(feat): prettier graph defaults (#541)
Use settings provided by @tecosaur. Closes #539.
This commit is contained in:
@ -65,14 +65,20 @@ Example:
|
|||||||
:type '(alist)
|
:type '(alist)
|
||||||
:group 'org-roam)
|
:group 'org-roam)
|
||||||
|
|
||||||
(defcustom org-roam-graph-node-extra-config nil
|
(defcustom org-roam-graph-node-extra-config
|
||||||
|
'(("shape" . "underline")
|
||||||
|
("style" . "rounded,filled")
|
||||||
|
("fillcolor" . "#EEEEEE")
|
||||||
|
("color" . "#C9C9C9")
|
||||||
|
("fontcolor" . "#111111"))
|
||||||
"Extra options for graphviz nodes.
|
"Extra options for graphviz nodes.
|
||||||
Example:
|
Example:
|
||||||
'((\"color\" . \"skyblue\"))"
|
'((\"color\" . \"skyblue\"))"
|
||||||
:type '(alist)
|
:type '(alist)
|
||||||
:group 'org-roam)
|
:group 'org-roam)
|
||||||
|
|
||||||
(defcustom org-roam-graph-edge-extra-config nil
|
(defcustom org-roam-graph-edge-extra-config
|
||||||
|
'(("color" . "#333333"))
|
||||||
"Extra options for graphviz edges.
|
"Extra options for graphviz edges.
|
||||||
Example:
|
Example:
|
||||||
'((\"dir\" . \"back\"))"
|
'((\"dir\" . \"back\"))"
|
||||||
|
Reference in New Issue
Block a user