λ ryan. himmelwright. net

Obsidian Basics

test

Linville Falls Trail, NC

Over 7 months ago, I switched to Obsidian and I love it. Obsidian’s versatility allows it become whatever I need it to be. However, this adaptability comes at the cost of an initial learning curve, which can be daunting for new users. While I can’t setup Obsidian for you, I can at least help with those initial steps by explaining what Obsidian is, and how to navigate around it.

What is Obsidian

Obsidian Graph View
Obsidian Graph Viewer.

On the project’s website, it is referred to as a “second brain”, and summarized with the following statement:

Obsidian is a powerful knowledge base on top of a local folder of plain text Markdown files.

At it’s core, Obsidian is simply a markdown editor for your notes. What shapes Obsidian to be different compared to other markdown editors, is that it was designed, and continues to be developed, around 3 fundamental directions (again, from the projects website):

  1. Local-first and plain text
  2. Link as first-class citizen
  3. Make it super extensible

In a world where nearly everything is hosted in the cloud, this first direction reinstates control and portability over one’s notes. While the user can still choose to utilize the cloud to sync or backup notes, the raw data is still under your control. This directly addresses the main reason why I left Notion.

The second direction is what makes Obsidian stand out from other markdown editors. It’s superb support for easy linking and navigating notes raises Obsidian to the top tier of note taking tools. This also enables the use of alternative note-taking systems, like the Zettelkasten method.

Lastly, the third direction (extensibility) is the dream of any power user, and what allows Obsidian to function however you need it to. It also enables a community to blossom around Obsidian, ensuring it’s future growth and success.

Obsidian Vaults

Obsidian Vault Setup
Obsidian Vault Setup Screen.

The first thing to know when getting started, is that obsidian notes are organized into something called vaults. This is a collection of files and folders that make up an obsidian notebook. Multiple vaults can be defined, and the user can switch between each vault as they wish.

When starting Obsidian for the first time, you will be prompted to define a vault location.

Markdown

Obsidian Note
A note in Obsidian. Left pane is edit mode, the right pane is the rendered preview.

After creating a vault, you can start writing note files. Notes are written in markdown, which is easy to learn, but very powerful. It is a plaintext file that supports formatting with simple markup syntax. For example italic (*italic*), bold (**bold**), and strikethrough (~~strikethrough~~) are all supported. Beyond that, features like web-links ([link](url)), inline and full code blocks(`code`), quote blocks (>This is my quoted text), and internal links (more on this next) are also supported.

Using markdown means that all the notes/data, are in a human-readable and very transferrable format. If you want to read them without using obsidian, you still can by using any other markdown reader (of which there are many), or by simply looking at the raw file. If you decide to switch applications to manage your notes, markdown will be easy to transfer/convert to whatever new system you want.

Obsidian note links
An Obsidian note that links to many others (left pane). Right pane shows the local graph view of that note’s links.

Obsidian is built on the concept of connecting everything using links. This is done using the syntax [[note name]], or [[note name|link text]]. A few things to know about Obsidian links:

Speaking of back-links….

Obsidian back links
The back-links pane for an Obsidian note. This displays all the linked references to the opened note.

When you link to something, that connection is created bi-directionaly. For any given note, you can open up the side pane and see every time another note has linked to the current one.

Combined with something like the ‘Daily notes’ plugin, this is very useful. For example, when I work on a project, I usually mention (and thus link to) the project’s page in my daily note. This allows me later look at the backlinks for that project note, and easily see all the days I worked on it. Additionally, I often define a Logs section in my project notes. If I sub-section the note using links to the daily notes, it has the same effect (linking days to projects, like I did in Notion).

#Tags

Obsidian tag pane
A note that uses #tags in the header, and the Obsidian tag pane opened on the right.

In addition to links, #tags can also be used while writing notes. There is a tag pane that displays all the tags with the number of occurrences for each one. When a tag in the pane is selected, it pops open the search results for that tag.

Personally, I use tags categorize and mark status on items (ex: #archived or #today). This makes it easier to search and maintain my notes.

Organization (Files & Folders)

Obsidian Files and Folder navigation
Obsidian Files and Folders Navigation.

Like most note applications/computers in general, Obsidian can organize files into folder hierarchies. Notes can be placed in folders, and those folders into other folders.

However, I recommend not being too worried about folder organization in Obsidian compared to other applications you might have used. Focus more on grouping notes using #tags or links, rather that in folders. I know it is a scary thought, but trust me, it will work out.

Searching/Navigation

Obsidian Search Menu
Obsidian Search Menu.

One reason forgoing a large folder hierarchy in Obsidian is possible, is that the search functionality works great. This is how most navigation will happen. Simply hit the keyboard shortcut (CMD/CTRL-o), and start typing. The pop up window will filter out the results as you type. If the file doesn’t exist, you can create a new one from the navigation.

Plugins

Installed Community Plugins
Installed Community Plugins.

One of the fundamental goals of Obsidian is to “Make it super extensible”. This is achieved via plugins.

There are two types of plugins: Core and Community. Core plugins are built into the system, while community plugins are created and maintained by… you guessed it, the community. Plugins allow the user to mold Obsidian into whatever they want.

For example, I use the Day Planner and Templates plugins to customize my setup for keeping daily work notes and logs. I’ve also used a Kanban plugin to better visualize monthly goals.

Tips/Suggestions

Settings to map key bindings to toggle the sidebar
I like to set keyboard shortcuts to easily toggle the side bars.

That should be it for the basics. Before I wrap up, here are just few tips and suggestions I have for using Obsidian:

If there are other notes that you know will be associated to others, add an ‘Associations’ header at the top. For example, all off the notes I have about posts for this website contain a Associations: [[my website]] as well as a Tags: #post_idea, #website line in a header at the top of the note.

Don’t be afraid to dump most of your notes into one folder

If you’re adding links and utilizing the search, you shouldn’t have any problems locating notes, and it will make it easier to navigate if you ever view the notes in something other than obsidian (ex: Gitlab/Github), as the links will be better supported.

Use keybindings and setup your own.

A few of my suggestions:

Use some plugins

A few core ones (that I don’t think are on by default) that I highly suggest enabling:

A few of the community ones I love:

Save/sync your .obsidian folder somewhere

This is useful if setting up on multiple machines, or just in case your setup gets whipped out.

Conclusion

My Obsidian Setup
My Obsidian Setup.

I could go on for hours about the details and intricacies surrounding my obsidian use over the past months. However, that wouldn’t be very helpful. At some point, you need to just dive in and start using Obsidian for yourself. Hopefully, I’ve covered enough that it shouldn’t be too hard to get started now. Enjoy!

Next Post:
Prev Post:

Bitwarden CLI Install Podman on M1 Mac