Skip to content

Commit df9e056

Browse files
committed
feat(obsidian): Setup
1 parent 23c85f5 commit df9e056

9 files changed

+83
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
fish/fish_variables
2+
obsidian/workspace.json

install.sh

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ ln -s $(pwd)/tmux/.gitmux.conf ~/.gitmux.conf
2121
rm -rf ~/.tmux/plugins/tmux/custom
2222
ln -s $(pwd)/tmux/modules/ ~/.tmux/plugins/tmux/custom
2323

24+
rm -rf ~/brain/.obsidian
25+
ln -s $(pwd)/obsidian ~/brain/.obsidian
26+
2427
# We can't symlink this one (/home won't be mounted yet)
2528
cp $(pwd)/xkb/us /usr/share/X11/xkb/symbols/us
2629

obsidian/app.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

obsidian/appearance.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"accentColor": ""
3+
}

obsidian/core-plugins-migration.json

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"file-explorer": true,
3+
"global-search": true,
4+
"switcher": true,
5+
"graph": true,
6+
"backlink": true,
7+
"canvas": true,
8+
"outgoing-link": true,
9+
"tag-pane": true,
10+
"properties": false,
11+
"page-preview": true,
12+
"daily-notes": false,
13+
"templates": true,
14+
"note-composer": true,
15+
"command-palette": true,
16+
"slash-command": false,
17+
"editor-status": true,
18+
"bookmarks": true,
19+
"markdown-importer": false,
20+
"zk-prefixer": false,
21+
"random-note": false,
22+
"outline": true,
23+
"word-count": true,
24+
"slides": false,
25+
"audio-recorder": false,
26+
"workspaces": false,
27+
"file-recovery": true,
28+
"publish": false,
29+
"sync": false
30+
}

obsidian/core-plugins.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[
2+
"file-explorer",
3+
"global-search",
4+
"switcher",
5+
"graph",
6+
"backlink",
7+
"canvas",
8+
"outgoing-link",
9+
"tag-pane",
10+
"page-preview",
11+
"templates",
12+
"note-composer",
13+
"command-palette",
14+
"editor-status",
15+
"bookmarks",
16+
"outline",
17+
"word-count",
18+
"file-recovery"
19+
]

obsidian/graph.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"collapse-filter": false,
3+
"search": "",
4+
"showTags": false,
5+
"showAttachments": false,
6+
"hideUnresolved": false,
7+
"showOrphans": true,
8+
"collapse-color-groups": true,
9+
"colorGroups": [],
10+
"collapse-display": true,
11+
"showArrow": false,
12+
"textFadeMultiplier": 0,
13+
"nodeSizeMultiplier": 1,
14+
"lineSizeMultiplier": 1,
15+
"collapse-forces": true,
16+
"centerStrength": 0.518713248970312,
17+
"repelStrength": 10,
18+
"linkStrength": 1,
19+
"linkDistance": 250,
20+
"scale": 1,
21+
"close": true
22+
}

obsidian/hotkeys.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

obsidian/templates.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"folder": "templates"
3+
}

0 commit comments

Comments
 (0)