Member-only story
7 Obsidian Templates That Supercharge My Second Brain
An overview on how I use templates in obsidian

Templates are powerful. They help you save time and be productive. You don’t have to type the same information in multiple places every time you create a new note.
They simplify your workflow by reducing friction to create new notes. Using templates will help you fall in love with managing information because you can automate repetitive tasks.
In this article, I will share with you the templates I use in my obsidian vault.
Templater Plugin
I prefer the templater plugin over the default template plugin. Unlike templates, templater allows you to insert variables and functions as well as javascript codes.
It allows you to create powerful templates that can automate mundane manual tasks. Following are the exact templates I’m using in the obsidian vault.
Literature Note
Literature note is a template for all the information I consume. Articles, Videos, and podcasts. Except for books. For books, I use the book search plugin which I will show you next.
The template is simple.
---
alias: <% tp.file.title %>
---
**Source:**
**Type:** #litnote #todevelop
<% await tp.file.move("/003 RESOURCES/" + tp.file.title) %>
I have the name of the file as an alias where I can add another alternative alias as well.
Then I’ve got the source that links back to the original source of this note.
Then there is type which includes the status of the note and the type of note. #todevelop means I still have to process this note.
After processing this note, the tag #todevelop will be removed.
At the end is the templater function which moves this note to the “OO3 RESOURCES” folder.
Note: I tried to add the source, author, date, and all the other stuff. But it didn’t help me. It was time-consuming and served no purpose.
Therefore, I cut off all the unnecessary data I was putting in and now only have the source and type data.