// install_context_view
Obsidian Vault — Monodex Pattern
Install context for /configs/obsidian-vault
run this command in your project root
$ blink apply obsidian-vaultWrites these 8 files into your project at .obsidian/app.json, .obsidian/core-plugins.json, .obsidian/community-plugins.json, .obsidian/daily-notes.json, .obsidian/appearance.json, .obsidian/snippets/no-fluff.css, Templates/Daily.md, .gitignore. Existing files at those paths are replaced.
what gets written
// .obsidian/app.jsonjson
{
"useMarkdownLinks": true,
"newLinkFormat": "shortest",
"attachmentFolderPath": "Attachments",
"alwaysUpdateLinks": true,
"showLineNumber": true,
"showInlineTitle": true,
"useTab": false,
"tabSize": 2,
"showFrontmatter": true,
"trashOption": "local",
"spellcheck": true,
"promptDelete": false,
"readableLineLength": true,
"strictLineBreaks": false,
"autoConvertHtml": true,
"fileSortOrder": "alphabetical",
"showUnsupportedFiles": false,
"userIgnoreFilters": ["node_modules/", "dist/", ".next/"]
}