(feat): prettier graph defaults (#541)

Use settings provided by @tecosaur. Closes #539.
This commit is contained in:
Jethro Kuan
2020-04-30 13:56:54 +08:00
committed by GitHub
parent ea3f5d00a0
commit 65d99e998c

View File

@ -65,14 +65,20 @@ Example:
:type '(alist)
: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.
Example:
'((\"color\" . \"skyblue\"))"
:type '(alist)
: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.
Example:
'((\"dir\" . \"back\"))"