Embrace messiness with a blind vault

I am someone who relies extensively on folders and sub-folders to keep my files organized. Maybe it’s because computers are designed like that, or simply because software developers love to sort source files into a tidy hierarchy of folders. When I began to use Obsidian, I naturally kept my notes like I usually do for my software projects: one folder for each topic or theme that can be optionally split into sub-folders. Your usual tree-like structure that everyone knows.

But when I started to use Obsidian for more and more things and added notes from different topics, I quickly bumped into some problems:

  • Some notes can logically be assigned to multiple folders. An example would be a page about a specific software design pattern with a code snippet in C#: I want to put this note in both my IT/Design Patterns folder and my IT/Csharp folder. Obviously, I can’t do it without duplicating the file. So I needed to make a choice.
  • I wasted so much time micromanaging my notes, I would make big changes in my vault to accommodate new topics and keep that somewhat logical for my brain.
  • I used tags to categorize my notes, but they were mostly duplicate information (each note in the IT/Csharp folder would have a it/csharp tag). The only useful tags I had were some meta tags for to-dos and priority management.

I decided to experiment with something new with my work vault: what if I completely ignore folders? What if I just don’t think about how my notes are hierarchized?
I decided to make a rather brutal change in my workflow: I deactivated the Files core plugin entirely. No more folders and micromanagement since I can’t access the file pane. Every note will be in the root folder of my vault, and I will not care at all. A truly blind vault.

This workflow simply liberated my brain from the burden of folder hierarchy, and I gained so much mental space to think about the content of my notes instead.

This is the set of rules that I use to keep some kind of organization within this bizarre concept:

  • The only folders I am allowed to use are an attachment one (it’s not necessary, but I wanted to separate markdown files and other formats) and a template one because Obsidian needs to know where to find templates. All existing and newly created notes are put in the root folder of the vault. I deactivated the Files core plugin.
  • I use tags instead of folders to categorize notes. This allows me to be more flexible: one note can only be in one folder, but I can assign as many tags as I want to the same note.
  • I need to link my notes more to connect my thoughts and allow some exploration when I read one of them.

There is a fine line between too few and too many links. Too few, and your thoughts are not connected, and you will lose some insights about your vault. But too many, and you will have what I call the Wikipedia effect: while you read, your eyes stop at each link, and you’ll lose your focus. When there are too many links, I sometimes unconsciously stop reading and wander to other notes, forgetting what I was doing.

Of course, you can tweak it however you want to fit your way of doing things, only the first rule is really important for a blind vault.

How the hell do I access my notes?

My first thought was to use MOCs to categorize my notes. But I kind of hate them: creating, maintaining, and using them add too much friction. The few MOCs I made are currently rotting in my vault, never accessed or updated. If you are, unlike me, a great advocate of MOCs and are interested in trying them with the concept of a blind vault, please share your experience!

The best friend I made on this adventure is the search plugin. My vault isn’t a hierarchy of thoughts anymore, it’s the search engine of my brain. I developed two processes:

  • If I want to search for a specific note, I simply type some keywords in the search bar.

The search plugin have a lot of “hidden” functions to optimize searches. For instance, you can exclude words with a minus: foo -bar will output notes that contain the word foo but no reference to bar.

  • If I want to make a broader search, I use the tag: options to specify some tags and browse the results.

Of course, you can use a combination of both, searching for a word within notes containing a specific tag.

95% of the time, I successfully find what I want, but for the other 5%, there are only two possibilities:

  • The good one: what I search for doesn’t exist, and I need to fill that gap. My workflow is to take the time to create and fill the new note right away with content, because if I don’t do it now, I know the future me will not do it. But you can use a sort of TODO system if that suits you.

If you create a note within a blind vault, but want to fill it later, I strongly recommend writing at least a couple keywords inside the body of the note. Your future self, searching for this note, will thank you.

  • The bad (but not really) one: you are sure that you have already written about this specific thing, but you cannot find it. No worries, if you can’t find it, it is simply that the note is not about what you are thinking or is simply too incomplete to have any useful information. You can safely create a new note like described above.

Exploration

Notes need maintenance: you need to read them again, update them, and link them more. But it’s hard to explore a vault without a file pane… But Obsidian gave us other tools!

  • The Random note plugin. I use this plugin once a day to open a random note a use some time to think about how to improve it: Can I add a link to a new note? Can I make the title clearer? Some information may require an update?
  • If I want to connect thoughts, I use the graph view. I always activate the tags in the filter section, so I can easily see which topics are related, which are alone, which notes connect which tags and investigate why, …

Tips

Using a blind vault, I developed some tips and tricks to ease my workflow:

  • Use bookmarks! You can bookmark everything: notes, headings, blocks, even searches. I bookmarked some of my most frequently accessed notes and searches.
  • For power users, you can use Regex to search your notes (if you want to learn that, go grab some shots of vodka, you’ll need it). I sometimes use this one: /(?<!\[)foo(?![#|\]])/ to search notes that contain foo that are not inside wiki links.
  • I use nested tags to categorize my notes (like it/csharp/dotnet) to have more flexible tag searches.
  • If you use nested tags and try to gain some insights with the graph, you may find frustrating that nested tags are not linked (for instance it and it/csharp are related but not linked)! I found a new plugin that adds this feature.
  • If you want to move a note inside the template folder, you can use the Move current file to another folder command, which is accessible even with the Files core plugin disabled.
6 Likes

I like the concept of the blind vault. “Search” has always been my best friend. :slightly_smiling_face:

You might want to include the link to the “new plugin that adds this feature” in the tips section: drPilman/obsidian-graph-nested-tags: A small plugin for Obsidian that links nested tags in graph view (github.com) – I think this is the one you are referring to.

1 Like

I went the opposite direction, from a blind vault using only tags to an A-Z reference where I keep notes on different subjects.

I will use the Ctrl+M shortcut to organise in any notes that come into my system through my inbox folder into the L/Learning folder, the T/Thinking folder, or some other folder in my A-Z reference.

In your example, this would be organised as “C/CSharp” and “D/Design Patterns.” This awkward folder structuring in a parent “IT” folder is likely what went wrong for you, having to maintain all of those folders in the correct parent folder sounds super time-consuming, and I’m guessing a lot of weight held in your memory to be able to know the correct location.

I am able to go to one of these A-Z folders and connect & break down the notes that are in there when doing some more exploring on a subject. I don’t have to add tags etc. in the main processing stage, I’m just doing the minimal amount of organisation possible: moving a note to a folder.

The majority of my notes are still in the main amorphous “Notes” folder, and I don’t really organise notes that I extract from other notes etc. as those are already have a minimal amount of findability through links.

1 Like

Thank you😄! I don’t know why the link bugged, but yes this is indeed the plugin I was referring!

1 Like

What is exactly an A-Z reference? Do you keep your notes alphabetically in folders representing a letter? How do you find a precise note in your vault if you don’t know exactly the title and use no tags?

Your link in the following is broken:

…I found a new plugin that adds this feature

I’m very interested in that as it would make Obsidian so much better! What’s the plugin?

1 Like
1 Like

Lovely! Thanks!

2 Likes

I thought I demonstrated this with some examples, though it’s essentially a folder named “A-Z Reference” with sub-folders as the different letters of the alphabet (A-Z). Included in each letter folder are the subject folders that begin with that letter, like A/Ants, A/Angels, etc.

You don’t need to add in all the letters immediately, just add in letter folders as you need them.

If I’m trying to find a particular note, I think about the subject that it’s most related to, identify what letter that begins with, and then go check that subject.

For example, I identify that an idea I’m looking for is about organising, I know this begins with an O, so it has to be in the O/Organising folder.

If it’s not there, I check the other subject it’s related to, and so on.

This is how notes will usually start out in my system, though over time I may add titles to those notes, add links, tags etc. that make these notes even easier to find.

An A-Z Reference folder is talked about in the book Getting Things Done by David Allen.

1 Like