Get More from Obsidian
Obsidian has a reputation for a steep learning curve — but once you move past the basics, the depth it offers is remarkable. These ten tips cover both built-in features and community plugins that can meaningfully change how you use your vault.
1. Use Quick Switcher to Navigate Without a Mouse
Press Ctrl/Cmd + O to open the Quick Switcher. Start typing any note name and press Enter to open it instantly. Combine this with Ctrl/Cmd + Shift + O to open a note in a new pane. Once you internalize this, you'll rarely touch the file explorer.
2. Master the Command Palette
Press Ctrl/Cmd + P to open the Command Palette — Obsidian's universal launcher. Every action, plugin command, and setting is accessible from here. Assign custom hotkeys to your most-used commands via Settings → Hotkeys.
3. Create Templates with the Core Templates Plugin
Enable the built-in Templates core plugin and set a templates folder. Create reusable note templates with pre-filled front matter, headings, and prompts. Insert any template with Ctrl/Cmd + Shift + T. For more power, the community plugin Templater adds dynamic fields, date variables, and JavaScript-based logic.
4. Use Aliases to Link Notes Naturally
You can link to a note using any name — not just its filename — by adding aliases to its front matter:
---
aliases: ["PKM", "knowledge management system"]
---
Now typing [[PKM]] anywhere in your vault will correctly link to that note. This makes writing feel natural rather than forcing you to remember exact file names.
5. Embed Notes and Blocks
Use ![[note-name]] to embed an entire note inline. To embed just a specific heading, use ![[note-name#heading]]. For a single block, add a block ID (^block-id) and reference it with ![[note-name^block-id]]. This is ideal for reusing definitions or summaries across multiple notes.
6. Install the Dataview Plugin
The Dataview community plugin turns your vault into a queryable database. You can write simple queries like:
```dataview
TABLE file.ctime AS "Created", tags
FROM #project
SORT file.ctime DESC
```
This creates a live table of all notes tagged #project, sorted by creation date. Dataview unlocks dashboards, reading lists, task trackers, and much more — all from your own notes.
7. Use Canvas for Visual Thinking
Obsidian's built-in Canvas feature lets you arrange notes, images, and cards spatially on an infinite board. It's ideal for brainstorming project structures, mapping out argument flows, or planning content. Create a canvas file (.canvas) from the command palette.
8. Set Up Daily Notes with a Consistent Template
Enable the Daily Notes core plugin and pair it with a template that includes sections for tasks, captures, reflections, and a link to the previous day. Press Ctrl/Cmd + Shift + D to open today's note instantly. This creates a reliable journaling and capture habit anchored to your vault.
9. Use the Graph View Strategically
The graph view looks impressive but can become overwhelming. Make it useful by filtering it: show only notes with a specific tag, or hide your daily notes and utility notes. Use local graph (the graph icon in the top-right of any note) to see a note's immediate neighborhood — this is often more actionable than the full graph.
10. Back Up Your Vault with Git
Your vault is just a folder of files — which makes version control trivial. Install the Obsidian Git community plugin to automatically commit and push your vault to a private GitHub repository on a schedule. This gives you a full history of every change, a backup, and the ability to sync across devices without an Obsidian Sync subscription.
Going Further
These ten tips only scratch the surface. As you build your workflow, explore the community plugins directory — there are hundreds of options for citations, spaced repetition, task management, and more. The key is to add tools only when you feel a specific friction point, not preemptively.