From 761370aaaa41a917dcd2bcec3b63aced0c5241c9 Mon Sep 17 00:00:00 2001 From: John Tyree Date: Fri, 18 Oct 2013 00:58:53 -0400 Subject: [PATCH] A visual representation of how the various config files are imported --- config-dependencies.gv | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 config-dependencies.gv diff --git a/config-dependencies.gv b/config-dependencies.gv new file mode 100644 index 0000000..290cd69 --- /dev/null +++ b/config-dependencies.gv @@ -0,0 +1,22 @@ +digraph G { + graph [layout=dot] + +// This is just an example for you to use as a template. +// Edit as you like. Whenever you save a legal graph +// the layout in the graphviz window will be updated. + + /* vim [href="http://www.vim.org/"] */ + /* dot [href="http://www.graphviz.org/"] */ + /* vimdot [href="file:///usr/bin/vimdot"] */ + + {_} -> _before + {_before} -> _before_fork + {_before_fork} -> _before_local + {_ _before_local} -> _bundles + {_bundles} -> _bundles_fork + {_bundles} -> _bundles_local + {_bundles_fork} -> _bundles_local + {_ _bundles_local} -> _fork + {_ _fork} -> _local + {_ _local} -> g_local +}