Skip to content

Commit 34062a8

Browse files
committed
chore: Configure Obsidian to use Markdown links
1 parent 48a7744 commit 34062a8

File tree

5 files changed

+19
-12
lines changed

5 files changed

+19
-12
lines changed

.obsidian/app.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
{}
1+
{
2+
"useMarkdownLinks": true,
3+
"alwaysUpdateLinks": true,
4+
"newLinkFormat": "relative"
5+
}

.obsidian/backlink.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"backlinkInDocument": true
3+
}

.obsidian/workspace.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
"state": {
1414
"type": "markdown",
1515
"state": {
16-
"file": "specs/configuration.md",
16+
"file": "specs/cli-spec.md",
1717
"mode": "source",
1818
"source": false
1919
},
2020
"icon": "lucide-file",
21-
"title": "configuration"
21+
"title": "cli-spec"
2222
}
2323
}
2424
]
@@ -94,7 +94,7 @@
9494
"state": {
9595
"type": "backlink",
9696
"state": {
97-
"file": "specs/configuration.md",
97+
"file": "specs/cli-spec.md",
9898
"collapseAll": false,
9999
"extraContext": false,
100100
"sortOrder": "alphabetical",
@@ -104,7 +104,7 @@
104104
"unlinkedCollapsed": true
105105
},
106106
"icon": "links-coming-in",
107-
"title": "Backlinks for configuration"
107+
"title": "Backlinks for cli-spec"
108108
}
109109
},
110110
{
@@ -113,12 +113,12 @@
113113
"state": {
114114
"type": "outgoing-link",
115115
"state": {
116-
"file": "specs/configuration.md",
116+
"file": "specs/cli-spec.md",
117117
"linksCollapsed": false,
118118
"unlinkedCollapsed": true
119119
},
120120
"icon": "links-going-out",
121-
"title": "Outgoing links from configuration"
121+
"title": "Outgoing links from cli-spec"
122122
}
123123
},
124124
{
@@ -142,13 +142,13 @@
142142
"state": {
143143
"type": "outline",
144144
"state": {
145-
"file": "specs/configuration.md",
145+
"file": "specs/cli-spec.md",
146146
"followCursor": false,
147147
"showSearch": false,
148148
"searchQuery": ""
149149
},
150150
"icon": "lucide-list",
151-
"title": "Outline of configuration"
151+
"title": "Outline of cli-spec"
152152
}
153153
}
154154
]
@@ -170,8 +170,8 @@
170170
},
171171
"active": "01bf72509d2b5652",
172172
"lastOpenFiles": [
173-
"specs/cli-spec.md",
174173
"specs/configuration.md",
174+
"specs/cli-spec.md",
175175
"specs/connectivity-layer.md"
176176
]
177177
}

specs/cli-spec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
The AW CLI (`aw`) unifies local and remote workflows for launching and managing agent coding sessions. Running `aw` with no subcommands starts the TUI dashboard. Subcommands provide scriptable operations for task/session lifecycle, configuration, repository management, and developer ergonomics.
66

7-
The CLI honors the layered configuration model in [[configuration]] (system, user, project, project-user, env, CLI flags). Flags map from config keys using the `--a-b-c` convention and env var prefix `AGENTS_WORKFLOW_`.
7+
The CLI honors the layered configuration model in [configuration](configuration.md) (system, user, project, project-user, env, CLI flags). Flags map from config keys using the `--a-b-c` convention and env var prefix `AGENTS_WORKFLOW_`.
88

99
### Primary Goals
1010

specs/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Motivation and support for tracking the origin of each configuration value, with use cases such as: debug-level log reporting, enforced setting explanation, and editor pre-fill mes
1010
sages.
1111

12-
Layered configuration supports system, user, project, and project-user scopes. Values can also be supplied via environment variables and CLI flags. See [[cli-spec.md]] for flag mappings.
12+
Layered configuration supports system, user, project, and project-user scopes. Values can also be supplied via environment variables and CLI flags. See [cli-spec](cli-spec.md) for flag mappings.
1313

1414
### Keys
1515

0 commit comments

Comments
 (0)