From 636af566e3434438c6979bc3f5a310672fae247b Mon Sep 17 00:00:00 2001 From: VR Date: Sun, 22 Jun 2025 16:44:11 +0100 Subject: [PATCH] Testin' --- .obsidian/app.json | 1 + .obsidian/appearance.json | 1 + .obsidian/core-plugins.json | 31 ++++++ .obsidian/workspace.json | 177 +++++++++++++++++++++++++++++++ notes/0000-how-this-was-built.md | 6 ++ notes/index.md | 9 +- notes/note.md | 5 - 7 files changed, 219 insertions(+), 11 deletions(-) create mode 100644 .obsidian/app.json create mode 100644 .obsidian/appearance.json create mode 100644 .obsidian/core-plugins.json create mode 100644 .obsidian/workspace.json create mode 100644 notes/0000-how-this-was-built.md delete mode 100644 notes/note.md diff --git a/.obsidian/app.json b/.obsidian/app.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.obsidian/app.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/.obsidian/appearance.json b/.obsidian/appearance.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.obsidian/appearance.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/.obsidian/core-plugins.json b/.obsidian/core-plugins.json new file mode 100644 index 0000000..b977c25 --- /dev/null +++ b/.obsidian/core-plugins.json @@ -0,0 +1,31 @@ +{ + "file-explorer": true, + "global-search": true, + "switcher": true, + "graph": true, + "backlink": true, + "canvas": true, + "outgoing-link": true, + "tag-pane": true, + "properties": false, + "page-preview": true, + "daily-notes": true, + "templates": true, + "note-composer": true, + "command-palette": true, + "slash-command": false, + "editor-status": true, + "bookmarks": true, + "markdown-importer": false, + "zk-prefixer": false, + "random-note": false, + "outline": true, + "word-count": true, + "slides": false, + "audio-recorder": false, + "workspaces": false, + "file-recovery": true, + "publish": false, + "sync": true, + "webviewer": false +} \ No newline at end of file diff --git a/.obsidian/workspace.json b/.obsidian/workspace.json new file mode 100644 index 0000000..313d0e6 --- /dev/null +++ b/.obsidian/workspace.json @@ -0,0 +1,177 @@ +{ + "main": { + "id": "69b48d20eddd5d27", + "type": "split", + "children": [ + { + "id": "754e76e341556800", + "type": "tabs", + "children": [ + { + "id": "a7a84c356653d530", + "type": "leaf", + "state": { + "type": "markdown", + "state": { + "file": "notes/index.md", + "mode": "source", + "source": false + }, + "icon": "lucide-file", + "title": "index" + } + } + ] + } + ], + "direction": "vertical" + }, + "left": { + "id": "371e529f0bd09bef", + "type": "split", + "children": [ + { + "id": "aa6ce42d2ba4c6d9", + "type": "tabs", + "children": [ + { + "id": "24693a4da486c556", + "type": "leaf", + "state": { + "type": "file-explorer", + "state": { + "sortOrder": "alphabetical", + "autoReveal": false + }, + "icon": "lucide-folder-closed", + "title": "Files" + } + }, + { + "id": "0de12dda217872ec", + "type": "leaf", + "state": { + "type": "search", + "state": { + "query": "", + "matchingCase": false, + "explainSearch": false, + "collapseAll": false, + "extraContext": false, + "sortOrder": "alphabetical" + }, + "icon": "lucide-search", + "title": "Search" + } + }, + { + "id": "761be25a753c2b9f", + "type": "leaf", + "state": { + "type": "bookmarks", + "state": {}, + "icon": "lucide-bookmark", + "title": "Bookmarks" + } + } + ] + } + ], + "direction": "horizontal", + "width": 300 + }, + "right": { + "id": "0b7622c040c7528e", + "type": "split", + "children": [ + { + "id": "03c6b66733d3f1bf", + "type": "tabs", + "children": [ + { + "id": "98ba5c9bbb9fcca1", + "type": "leaf", + "state": { + "type": "backlink", + "state": { + "file": "notes/index.md", + "collapseAll": false, + "extraContext": false, + "sortOrder": "alphabetical", + "showSearch": false, + "searchQuery": "", + "backlinkCollapsed": false, + "unlinkedCollapsed": true + }, + "icon": "links-coming-in", + "title": "Backlinks for index" + } + }, + { + "id": "14a7943d9d272e96", + "type": "leaf", + "state": { + "type": "outgoing-link", + "state": { + "file": "notes/index.md", + "linksCollapsed": false, + "unlinkedCollapsed": true + }, + "icon": "links-going-out", + "title": "Outgoing links from index" + } + }, + { + "id": "c93bb8473637a3d3", + "type": "leaf", + "state": { + "type": "tag", + "state": { + "sortOrder": "frequency", + "useHierarchy": true, + "showSearch": false, + "searchQuery": "" + }, + "icon": "lucide-tags", + "title": "Tags" + } + }, + { + "id": "50ded0e5f80093cd", + "type": "leaf", + "state": { + "type": "outline", + "state": { + "file": "notes/index.md", + "followCursor": false, + "showSearch": false, + "searchQuery": "" + }, + "icon": "lucide-list", + "title": "Outline of index" + } + } + ] + } + ], + "direction": "horizontal", + "width": 300, + "collapsed": true + }, + "left-ribbon": { + "hiddenItems": { + "switcher:Open quick switcher": false, + "graph:Open graph view": false, + "canvas:Create new canvas": false, + "daily-notes:Open today's daily note": false, + "templates:Insert template": false, + "command-palette:Open command palette": false + } + }, + "active": "a7a84c356653d530", + "lastOpenFiles": [ + "here.md", + "notes/index.md", + "notes/0000-how-this-was-built.md" + ] +} \ No newline at end of file diff --git a/notes/0000-how-this-was-built.md b/notes/0000-how-this-was-built.md new file mode 100644 index 0000000..0ced051 --- /dev/null +++ b/notes/0000-how-this-was-built.md @@ -0,0 +1,6 @@ +--- +title: Building this digital garden +tags: + - how-to + - cicd +--- diff --git a/notes/index.md b/notes/index.md index 357bcd3..4e2ea74 100644 --- a/notes/index.md +++ b/notes/index.md @@ -1,10 +1,7 @@ --- -title: Example Title +title: Hi there! You've stumbled upon a construction site... draft: false tags: - - example-tag + - home-page --- - -1st note - -The rest of your content lives here. You can use **Markdown** here :) +Bear with me, things are still getting sorted in the background. Have a look [[0000-how-this-was-built|here]] for a brief description of how this digital garden was built! diff --git a/notes/note.md b/notes/note.md deleted file mode 100644 index 3ce9a21..0000000 --- a/notes/note.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: 1st note ---- - -The **1st** note!