chore: sync Obsidian UI changes
calendar/data.json — configured through Obsidian UI: - Word count dots: #ebcb8b, 250 words/dot, calendar + menu - Task dots: #d08770, max 1 incomplete, calendar + menu - Link indicators: #a3be8c, menu only - Backlink indicators: #5e81ac, menu only - Zettel tracking: #b48ead, calendar + menu community-plugins.json — enabled through Obsidian (may include dataview etc) workspace.json — updated open tabs/layout state graph.json — Obsidian reset colors on close (expected behavior)
This commit is contained in:
7
.obsidian/community-plugins.json
vendored
7
.obsidian/community-plugins.json
vendored
@@ -1 +1,6 @@
|
|||||||
["calendar","thino"]
|
[
|
||||||
|
"calendar",
|
||||||
|
"thino",
|
||||||
|
"calendar-beta",
|
||||||
|
"obsidian-memos"
|
||||||
|
]
|
||||||
66
.obsidian/graph.json
vendored
66
.obsidian/graph.json
vendored
@@ -7,24 +7,66 @@
|
|||||||
"showOrphans": false,
|
"showOrphans": false,
|
||||||
"collapse-color-groups": false,
|
"collapse-color-groups": false,
|
||||||
"colorGroups": [
|
"colorGroups": [
|
||||||
{ "query": "path:wiki/entities", "color": { "a": 1, "rgb": 12945088 } },
|
{
|
||||||
{ "query": "path:wiki/concepts", "color": { "a": 1, "rgb": 5227007 } },
|
"query": "path:wiki/entities",
|
||||||
{ "query": "path:wiki/sources", "color": { "a": 1, "rgb": 6986069 } },
|
"color": {
|
||||||
{ "query": "path:wiki/questions", "color": { "a": 1, "rgb": 14474410 } },
|
"a": 1,
|
||||||
{ "query": "path:wiki/comparisons", "color": { "a": 1, "rgb": 13724009 } },
|
"rgb": 12945088
|
||||||
{ "query": "path:wiki/meta", "color": { "a": 1, "rgb": 5676246 } },
|
}
|
||||||
{ "query": "path:wiki", "color": { "a": 1, "rgb": 4473924 } }
|
},
|
||||||
|
{
|
||||||
|
"query": "path:wiki/concepts",
|
||||||
|
"color": {
|
||||||
|
"a": 1,
|
||||||
|
"rgb": 5227007
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"query": "path:wiki/sources",
|
||||||
|
"color": {
|
||||||
|
"a": 1,
|
||||||
|
"rgb": 6986069
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"query": "path:wiki/questions",
|
||||||
|
"color": {
|
||||||
|
"a": 1,
|
||||||
|
"rgb": 14474410
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"query": "path:wiki/comparisons",
|
||||||
|
"color": {
|
||||||
|
"a": 1,
|
||||||
|
"rgb": 13724009
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"query": "path:wiki/meta",
|
||||||
|
"color": {
|
||||||
|
"a": 1,
|
||||||
|
"rgb": 5676246
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"query": "path:wiki",
|
||||||
|
"color": {
|
||||||
|
"a": 1,
|
||||||
|
"rgb": 4473924
|
||||||
|
}
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"collapse-display": true,
|
"collapse-display": true,
|
||||||
"showArrow": true,
|
"showArrow": true,
|
||||||
"textFadeMultiplier": -1,
|
"textFadeMultiplier": -1,
|
||||||
"nodeSizeMultiplier": 2.0,
|
"nodeSizeMultiplier": 2,
|
||||||
"lineSizeMultiplier": 0.8,
|
"lineSizeMultiplier": 0.8,
|
||||||
"collapse-forces": false,
|
"collapse-forces": false,
|
||||||
"centerStrength": 0.25,
|
"centerStrength": 0.25,
|
||||||
"repelStrength": 80,
|
"repelStrength": 20,
|
||||||
"linkStrength": 3.0,
|
"linkStrength": 1,
|
||||||
"linkDistance": 80,
|
"linkDistance": 80,
|
||||||
"scale": 1.2,
|
"scale": 0.4786753448718912,
|
||||||
"close": false
|
"close": false
|
||||||
}
|
}
|
||||||
29
.obsidian/plugins/calendar/data.json
vendored
29
.obsidian/plugins/calendar/data.json
vendored
@@ -3,5 +3,32 @@
|
|||||||
"localeOverride": "en-GB",
|
"localeOverride": "en-GB",
|
||||||
"weekStart": "monday",
|
"weekStart": "monday",
|
||||||
"showWeeklyNote": false,
|
"showWeeklyNote": false,
|
||||||
|
"sourceSettings": {
|
||||||
|
"wordCount": {
|
||||||
|
"color": "#ebcb8b",
|
||||||
|
"display": "calendar-and-menu",
|
||||||
|
"wordsPerDot": 250
|
||||||
|
},
|
||||||
|
"tasks": {
|
||||||
|
"color": "#d08770",
|
||||||
|
"display": "calendar-and-menu",
|
||||||
|
"maxIncompleteTaskDots": 1
|
||||||
|
},
|
||||||
|
"links": {
|
||||||
|
"color": "#a3be8c",
|
||||||
|
"display": "menu"
|
||||||
|
},
|
||||||
|
"backlinks": {
|
||||||
|
"color": "#5e81ac",
|
||||||
|
"display": "menu"
|
||||||
|
},
|
||||||
|
"zettels": {
|
||||||
|
"color": "#b48ead",
|
||||||
|
"display": "calendar-and-menu"
|
||||||
|
},
|
||||||
|
"emoji-tags": {
|
||||||
|
"display": "none"
|
||||||
|
}
|
||||||
|
},
|
||||||
"showNoteIndicator": true
|
"showNoteIndicator": true
|
||||||
}
|
}
|
||||||
20
.obsidian/workspace.json
vendored
20
.obsidian/workspace.json
vendored
@@ -4,11 +4,11 @@
|
|||||||
"type": "split",
|
"type": "split",
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"id": "2556036f92b81f42",
|
"id": "477f1cf965ca606e",
|
||||||
"type": "tabs",
|
"type": "tabs",
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"id": "0ae3ce8edab2ab7f",
|
"id": "a31de1b302cdc5cf",
|
||||||
"type": "leaf",
|
"type": "leaf",
|
||||||
"state": {
|
"state": {
|
||||||
"type": "graph",
|
"type": "graph",
|
||||||
@@ -157,6 +157,16 @@
|
|||||||
"icon": "lucide-list",
|
"icon": "lucide-list",
|
||||||
"title": "Outline"
|
"title": "Outline"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "20a272e103b5d792",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "calendar",
|
||||||
|
"state": {},
|
||||||
|
"icon": "calendar-with-checkmark",
|
||||||
|
"title": "Calendar"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -173,10 +183,12 @@
|
|||||||
"daily-notes:Open today's daily note": false,
|
"daily-notes:Open today's daily note": false,
|
||||||
"templates:Insert template": false,
|
"templates:Insert template": false,
|
||||||
"command-palette:Open command palette": false,
|
"command-palette:Open command palette": false,
|
||||||
"bases:Create new base": false
|
"bases:Create new base": false,
|
||||||
|
"obsidian-memos:Thino": false,
|
||||||
|
"obsidian-memos:Thino Super": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"active": "0ae3ce8edab2ab7f",
|
"active": "a31de1b302cdc5cf",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
"wiki/comparisons/Wiki vs RAG.md",
|
"wiki/comparisons/Wiki vs RAG.md",
|
||||||
"wiki/comparisons/Wiki vs RAG.md.tmp.224546.1775556215080",
|
"wiki/comparisons/Wiki vs RAG.md.tmp.224546.1775556215080",
|
||||||
|
|||||||
Reference in New Issue
Block a user