Organizing Your Notes

Develop effective folder structures, naming conventions, and organizational strategies for a growing vault.

The Philosophy of Obsidian Organization

One of Obsidian's greatest strengths is flexibility. There's no "one right way" to organize your vault. However, there are proven principles:

Key insight: In Obsidian, you rely primarily on linking and backlinks rather than folder hierarchies. Folders are useful, but they're less important than in traditional file systems.

Two Schools of Thought

  • Minimalist approach: Keep most notes in the root folder. Use linking for organization. Folders only for specific categories (attachments, archive, etc.)
  • Folder hierarchy: Create folders for topics and subjects. Easier to navigate visually but relies more on folder structure.

Recommendation for beginners: Start simple (minimal folders), then add folders as your vault grows. You can always refactor later!

Naming Conventions

Good naming makes your vault much easier to use. Here are proven conventions:

General Guidelines

  • Be descriptive: "Research Methods Overview" is better than "RM"
  • Avoid special characters: Stick to letters, numbers, spaces, hyphens, and underscores
  • Use consistent capitalization: Choose Title Case or lowercase consistently
  • Avoid numbering at the start: "2024 Budget" is bad; "Budget 2024" is better (changes sort order)
  • Keep it moderate length: 30-50 characters is usually ideal

Naming Patterns for Different Note Types

  • Topics/Concepts: "Photosynthesis", "Circular Economy", "Cognitive Biases"
  • People: "Albert Einstein", "Jane Austen" (or "Einstein, Albert" if you prefer)
  • Books/Papers: "The Selfish Gene by Richard Dawkins" or use citation style
  • Projects: "Project: Climate Study" or "2024 Research Proposal"
  • Index/Hub notes: "Index", "Home", "Python Hub" (clear they're organizational)
  • Journal entries: "2024-01-15 Daily Reflection" (ISO date for sorting)

Power tip: Use ISO date format (YYYY-MM-DD) for anything you want to sort by date. "2024-01-15" sorts correctly!

Folder Structure Approaches

Approach 1: The Minimalist (Recommended for Beginners)

Keep most notes in the root folder. Only create folders for specific purposes:

My Vault/ ├── .obsidian/ ├── attachments/ (images, PDFs, etc.) ├── archive/ (old notes you keep for reference) ├── templates/ (reusable templates) ├── 00 Inbox/ (capture new ideas quickly) ├── Home.md (vault overview) └── [All your notes]

Approach 2: Subject-Based Folders

Organize by broad subject areas. Good for academics or specialists:

My Vault/ ├── Biology/ │ ├── Photosynthesis.md │ ├── Cellular Respiration.md │ └── Genetics.md ├── Chemistry/ │ ├── Periodic Table.md │ └── Chemical Bonds.md ├── Physics/ └── attachments/

Approach 3: Type-Based Organization

Organize by note type rather than subject:

My Vault/ ├── Concepts/ (definitions, theories) ├── People/ (biographies, researchers) ├── Papers/ (book and paper notes) ├── Projects/ (current work) ├── Daily Notes/ (journal entries) └── Resources/ (links, collections)

Approach 4: The Zettelkasten Method

Uses ID prefixes (timestamps or numbers) for filing:

My Vault/ ├── 202401120920 Photosynthesis.md ├── 202401120925 Chlorophyll.md ├── 202401121000 Plant Biology.md └── attachments/

Note: This requires practice to get used to!

What I Recommend for Students

Based on what works for student researchers, I recommend this combination:

Research Vault/ ├── 📁 00 - Inbox/ │ └── (Capture notes here first) ├── 📁 10 - Core Concepts/ │ └── (Your main topics) ├── 📁 20 - Literature/ │ └── (Notes on papers, books) ├── 📁 30 - Projects/ │ └── (Active research projects) ├── 📁 40 - Attachments/ │ └── (Images, PDFs) ├── 📁 50 - Archive/ │ └── (Old but useful notes) ├── Home.md ├── Index by Topic.md └── Index by Project.md

Why this works:

  • Numbered folders sort correctly and stay visible
  • Clear purpose for each folder
  • Multiple index files help navigation
  • Grows with you as needs become more complex

Using Tags for Organization

Tags provide a secondary organizational layer without creating physical folders:

Creating Tags

In any note, use #tagname syntax:

This is an interesting observation from my #research. It relates to #psychology and specifically #cognitive-bias.

Smart Tag Usage for Students

  • #important - Key concepts
  • #todo - Action items
  • #question - Things to investigate further
  • #source/[name] - Which book/paper it came from
  • #project/[name] - Which project it relates to
  • #status/draft - Current status of note

Power tip: Use tags sparingly. Too many tags decrease their usefulness. Focus on tags that help you find things or classify content.

Viewing Tagged Notes

Click any tag to see all notes with that tag. You can also search for tags using the search function.

Managing Your Vault as It Grows

When to Create Folders

Don't create folders too early! Wait until you have:

  • A clear reason for the folder
  • At least 5-10 related notes
  • A consistent naming pattern for those notes

Refactoring Folders

As your vault grows, you might need to reorganize. Good news: Obsidian automatically updates links when you move files! So refactoring is safe.

The Inbox Pattern

Create an "Inbox" or "Fleeting Notes" folder as your capture zone. Then, periodically process these notes:

  1. Review inbox notes
  2. Link them to existing notes
  3. Move them to the right folder or consolidate them
  4. Archive or refine as needed

This keeps your main vault organized while capturing quickly.

Special Note Types and Patterns

Hub/Index Notes

Create index notes that link to all related topics:

# Cell Biology Hub

Overview of cell biology concepts.

## Structure
- [[Cell Membrane]]
- [[Nucleus]]
- [[Mitochondria]]

## Processes
- [[Photosynthesis]]
- [[Cellular Respiration]]

Daily Notes

Some people keep daily notes. Use dates:

📁 Daily Notes/
├── 2024-01-15.md
├── 2024-01-16.md
└── 2024-01-17.md

Literature Notes

For research, create a structure for source notes:

📁 Literature/
├── Smith, 2020 - Climate Change.md
├── Johnson, 2021 - Ocean Acidification.md
└── [More papers...]

Organization Best Practices

Keep It Simple Initially

Start with minimal folders. Errors in over-organization are worse than under-organization. Linking matters more than folder structure in Obsidian.

Be Consistent

Whatever pattern you choose, stick with it. Consistency makes your vault navigable.

Use Meaningful Names

Folder names should be self-explanatory to future-you. "Research" is vague; "Research Methods - 2024" is clear.

Review Periodically

Every month or quarter, assess if your organization still makes sense. Reorganize if needed—Obsidian makes it easy.

Don't Overthink It

Organization matters less in Obsidian than in other systems. Focus on content and linking first. Folders are secondary.

You're Organized!

Good organization makes your vault more useful and enjoyable to work with. Start simple and adjust as you learn what works for you.

Next: In Module 9, we'll explore plugins—tools that extend Obsidian's capabilities for more specialized workflows.