<@!255101260770967553> <@!719437093117624370> th...
# chat
k
@User @User the idea behind the vault is you can put any number of hierarchies in a domain that you want. for context, my bigger vaults have close to 10k notes in them. the reason you want to split out vaults is for context. for example, you might have a vault that is private stuff that you want to keep locally and another vault with stuff you don't mind putting on dropbox. you could have two vaults (disclaimer: not currently supported until we have multi-vault support which is coming in a few weeks) that look like the following
Copy code
~/Dendron/private-vault

~/Dropbox/Dendron/public-vault
when we launch multi-vault, you'll still be able to access all your notes as if they were in one big vault even if you add multiple ones. say you have the following files
Copy code
private-vault/
    - ...
    - me.public.md
public-vault/
    - ...
    - me.secret.md
when you use lookup, and type
me.
, you'll see the following results
Copy code
- me.public (public-vault)
- me.secret (private-vault)
you can also put a deny-list in your
dendron.yml
to make sure you don't accidentally publish notes you don't want to. the following configuration will publish your
me
hierarchy from your public vault but not your private one
Copy code
yml
siteHierarchies: 
- me

localOnly:
- private-vault