Connect to Obsidian
Your second brain is plain markdown with YAML frontmatter — which is exactly what Obsidian reads natively. No conversion needed. You just open the folder.
Open the vault
Section titled “Open the vault”- Download and install Obsidian if you haven’t already
- Click Open folder as vault
- Select your
~/second-brain/folder - Done — all your markdown files are now browsable in Obsidian
Why Obsidian works here
Section titled “Why Obsidian works here”- Graph view — see connections between wiki entries, projects, and notes
- Backlinks — when you reference a project from a wiki entry, Obsidian tracks it
- Quick switcher (
Cmd/Ctrl+O) — jump to any file instantly - Tags — the YAML frontmatter tags you write are first-class in Obsidian
Frontmatter format for wiki entries
Section titled “Frontmatter format for wiki entries”Write wiki entries like this so Obsidian picks up the metadata:
---title: "Supabase RLS gotcha with service role"tags: [supabase, rls, auth]created: 2026-05-20updated: 2026-05-20---
# Supabase RLS gotcha with service role
What happened, what caused it, how to fix it.Recommended plugins
Section titled “Recommended plugins”Install these from Settings → Community plugins:
| Plugin | Why |
|---|---|
| Obsidian Git | Auto-commit and push on a timer — keeps your second brain synced without thinking about it |
| Dataview | Query your wiki by tag, date, or field — turns your notes into a searchable database |
| Templater | Insert the wiki frontmatter template with one keystroke |
Setting up Obsidian Git (recommended)
Section titled “Setting up Obsidian Git (recommended)”- Install Obsidian Git from Community plugins
- Go to Settings → Obsidian Git
- Set Auto pull interval to
10minutes - Set Auto commit-and-sync interval to
30minutes - Enable Pull on startup
Your second brain now syncs to GitHub automatically in the background.
Git note
Section titled “Git note”Obsidian creates a .obsidian/ folder with your settings. The .gitignore from the setup step already excludes the workspace files (which change constantly) but tracks your plugin settings and theme.