diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-08-03 18:42:01 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-08-03 18:42:01 +0200 |
commit | 6f555f6ea6233875fd7e9a7e9041ab7c2df44664 (patch) | |
tree | 3c220b6229a6f413f73ae44fc69dd75112b5f3d4 /components/config.ts | |
parent | f2c340d2292a002cc9f51c00124590c41082a328 (diff) | |
parent | 65090cce57180c5492b30f62375879d616202411 (diff) |
Merge pull request #31 from blester125/main
Process org-roam-bibtex citations links differently depending on if they have an associated node.
Diffstat (limited to 'components/config.ts')
-rw-r--r-- | components/config.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/components/config.ts b/components/config.ts index 6c73921..daf548c 100644 --- a/components/config.ts +++ b/components/config.ts @@ -34,6 +34,7 @@ export const initialPhysics = { export const initialFilter = { orphans: false, parents: true, + fileless_cites: false, tagsBlacklist: [], tagsWhitelist: [], nodes: [], @@ -88,6 +89,12 @@ export const initialVisuals = { citeLinkColor: 'gray.600', citeLinkHighlightColor: '', citeNodeColor: 'black', + refDashes: true, + refDashLength: 35, + refGapLength: 15, + refLinkColor: 'gray.400', + refLinkHighlightColor: '', + refNodeColor: 'black', } export interface TagColors { |