agilesmagile73 downloadsInteractive D3.js force-directed graph showing the current note's neighbourhood in a sidebar panel. Nodes connected by shared tags and backlinks.
An Obsidian plugin that shows the current note's neighbourhood as an interactive force-directed graph in a sidebar panel. Navigate your vault by exploring connections between notes, shared tags, and backlinks.
Screenshots will be added in a future update.
Opens as a right-sidebar panel. As you navigate between notes, the graph recentres on the active note and shows:
Hover any node to highlight its connections. At depth 2, secondary connections also light up, revealing the structure around any note in the neighbourhood.
| Action | Behaviour |
|---|---|
| Hover node | Highlights direct connections (and secondary connections at depth 2) |
| Hover edge | Shows the relationship type if the edge is a typed Excalibrain relationship |
| Click | Recentres the graph on that note |
| Double-click | Opens the note in the editor and recentres |
| Drag | Repositions a node |
| Scroll | Zoom in and out |
main.js, manifest.json, and styles.css from the latest release<your vault>/.obsidian/plugins/neighbourhood-graph/There are two places to configure the plugin:
Quick access to the controls you reach for most often.
| Setting | Description | Default |
|---|---|---|
| Highlight depth | Tiers of connections highlighted on hover. 1 = direct only. 2 = direct + secondary. | 2 hops |
| Max neighbours | Cap on displayed notes. Most strongly connected shown first. | 30 |
| Size by relevance | How much node size varies by connection strength. 0 = uniform, 10 = dramatic. | 5 |
| Max node size | Maximum radius in pixels of the largest neighbour node. Reduce for a compact sidebar. | 10 |
Physics sliders — four controls for fine-tuning the graph layout: line colour, line thickness, spread (repulsion), and link pull (clustering). Changes are reflected live as you drag without rebuilding the graph.
| Setting | Description | Default |
|---|---|---|
| Highlight depth | Same as the floating panel. | 2 hops |
| Max neighbours | Same as the floating panel. | 30 |
| Max node size | Maximum node radius. Reduce for compact sidebars; increase for full-panel views. | 10 |
| Show path in tooltip | Display the vault-relative folder path when hovering a note node. | On |
| Default node colour | Colour used for notes not matching any colour group. Falls back to your theme's accent colour. | Theme accent |
Assign colours to notes by query. Three query types are supported:
path:people/ — matches notes whose path starts with people/tag:#project — matches notes carrying the #project tagFirst matching rule wins. Groups are collapsible in the settings tab once at least one exists. Use the Import button to copy colour groups directly from Obsidian's built-in graph view.
If Excalibrain is installed, this plugin reads its typed relationship fields from note frontmatter to draw distinct edge styles and weight connections more accurately.
| Relationship | Edge style | Default frontmatter fields |
|---|---|---|
| Parent / child | Solid line | Parent, Parents, Children, Child, up, down |
| Friend | Dashed line | Friends, Friend, similar, supports, alternatives |
| Opposes | Dotted line | opposes, disadvantages, cons |
| Previous / next | Dash-dot line | Previous, Next, Before, After |
The plugin detects three states:
Toggle the integration on or off with the Use Excalibrain relationships toggle in the settings tab. When active, typed links receive a strength bonus so they rank higher in the neighbourhood.
Hover any typed edge to see the relationship label ("parent of", "friend", "opposes", etc.) in a tooltip.
The legend in the top-left of the graph panel shows edge style swatches that reflect your current line colour and thickness settings, so the key always matches the graph.
The plugin reads Obsidian's metadata cache for tags, resolved links, and frontmatter links. No custom frontmatter is required for basic use. Neighbours are scored by connection strength:
The top N neighbours (configurable) are shown. Node size reflects relevance to the focus note — salience scaling is anchored to the displayed set, so variation fills the full range regardless of how many notes are capped.
Graph Label Above — moves node labels above nodes in Obsidian's full graph view so they are not obscured by an enlarged mouse pointer. If you use Neighbourhood Graph alongside the built-in graph view, this is a natural companion.
MIT