Plugin Guide

Installed Plugins

PluginWhat It DoesWhen You Need It
DataviewCreates automatic tables and lists from your notesDashboards, indexes, finding untagged notes
TemplaterFills in dates, IDs, and other variables when you create notesEvery time you create a note from a template
CopilotAI assistant inside ObsidianSummarizing, finding connections, suggesting tags
TasksTracks research tasks and deadlinesManaging active projects
OmnisearchBetter search across your entire vaultFinding anything quickly

Dataview

What It Is

Dataview reads the metadata (frontmatter) in your notes and displays it as tables or lists.

How to Use It

  1. Create a note
  2. Switch to Source mode (Ctrl+E)
  3. Type a code block starting with dataview:
TABLE type, id, created
FROM "03 Permanent Notes"
WHERE type = "permanent-note"
SORT id ASC
4. Switch to Reading view (Ctrl+E) to see the table
    
 
### Common Queries
 
**All notes by type:**
 
TABLE type, id, created
FROM ""
WHERE type
SORT type, id
 
```dataview
SORT type, id

Recently modified:

TABLE file.mtime as “Modified”, type FROM "" WHERE type SORT file.mtime DESC LIMIT 10

Untagged notes:

TABLE id, type, created FROM "" WHERE type AND tags = [] SORT created DESC

Templater

What It Does

When you create a note from a template, Templater automatically fills in:

  • Today’s date

  • A unique ID

  • The note title

How to Use It

  1. Create a new note

  2. Press Ctrl+P

  3. Type “Templater: Insert Template”

  4. Select your template

  5. Type the note title

  6. Templater fills in the rest

Template Variables

VariableWhat It BecomesExample
<% tp.date.now("YYYY-MM-DD") %>Today’s date2026-07-19
<% tp.date.now("YY") %>Current year (short)26
<% tp.file.title %>The note’s titleMy New Note
<% Math.floor(Math.random() * 900 + 100) %>Random 3-digit number473

Copilot

What It Does

AI assistant that can read your notes and help with research tasks.

How to Access It

  1. Open the Copilot sidebar (icon in left ribbon)

  2. Or press your configured hotkey

  3. Select a custom prompt or type freely

Custom Prompts

PromptWhat It Does
Summarize Note2-sentence summary + gaps in reasoning
Find ConnectionsSuggests 3 related notes as [[PL-XXX]] links
Suggest TagsRecommends 5 tags from standard categories
Analyze SourceEvaluates argument, evidence, methods, relevance

Good Uses

  • Summarizing an article

  • Identifying assumptions

  • Suggesting related notes

  • Explaining difficult concepts

  • Brainstorming questions

Avoid

  • Writing your conclusions

  • Generating evidence

  • Replacing critical reading

Troubleshooting

ProblemFix
Dataview shows raw codeSwitch to Reading view (Ctrl+E)
Templater shows <% %>Template is corrupted, rebuild in Source mode
Copilot not respondingCheck API key in settings
Plugin not workingCheck if it’s enabled in Community Plugins