Building a Second Brain with Markdown
How to organize your thoughts and knowledge using simple markdown files.
Table of Contents
Your brain is for having ideas, not storing them. Here’s how I use markdown to build a second brain.
The Concept
A “second brain” is an external system where you capture, organize, and retrieve your thoughts. It reduces cognitive load and helps you focus on what matters.
Why Markdown?
Markdown is perfect for a second brain because:
- It’s plain text - Fast, searchable, future-proof
- It’s portable - Works everywhere, no vendor lock-in
- It’s simple - Focus on content, not formatting
- It’s versionable - Track changes with git
My Structure
notes/
├── inbox/ # Quick captures
├── projects/ # Active projects
├── references/ # Book notes, articles
├── journal/ # Daily reflections
└── templates/ # Reusable formats
The Capture Process
1. Quick Capture
When an idea hits, I immediately write it down. No formatting, no organizing — just dump it into inbox/.
# Idea: Article about markdown
- Compare markdown to notion
- Why plain text wins long-term
- Include practical examples
2. Process and Organize
Once a week, I review my inbox. Each note gets:
- A clear title
- Proper tags
- Links to related notes
- Moved to the right folder
3. Connect and Create
The magic happens when notes connect. A note about “markdown” links to “note-taking” which links to “productivity” — patterns emerge.
Tools I Use
- Editor: Neovim with markdown plugins
- Search: ripgrep for fast full-text search
- Sync: Git for version control
- Preview: Glow for terminal rendering
Getting Started
Start small. Create a notes/ folder. Capture one idea per day. Don’t worry about organization yet — just build the habit of capturing.
The system will evolve with you.