Skip to content

Commit 3997e89

Browse files
committed
Update obsidian setting
1 parent 32d7f72 commit 3997e89

File tree

24 files changed

+3514
-5
lines changed

24 files changed

+3514
-5
lines changed

.obsidian/app.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
22
"vimMode": true,
3-
"promptDelete": false
3+
"promptDelete": false,
4+
"showInlineTitle": true
45
}

.obsidian/appearance.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1-
{}
1+
{
2+
"cssTheme": "Minimal",
3+
"accentColor": "",
4+
"theme": "moonstone",
5+
"showViewHeader": true,
6+
"showRibbon": false,
7+
"translucency": false
8+
}

.obsidian/community-plugins.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
[]
1+
[
2+
"obsidian-hider",
3+
"obsidian-minimal-settings",
4+
"obsidian-style-settings",
5+
"obsidian-linter"
6+
]

.obsidian/core-plugins.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"bookmarks": true,
1919
"markdown-importer": false,
2020
"zk-prefixer": false,
21-
"random-note": false,
21+
"random-note": true,
2222
"outline": true,
2323
"word-count": true,
2424
"slides": false,
@@ -27,5 +27,5 @@
2727
"file-recovery": true,
2828
"publish": false,
2929
"sync": true,
30-
"webviewer": false
30+
"webviewer": true
3131
}

.obsidian/graph.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"collapse-filter": true,
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": 0.11426461588954809,
21+
"close": false
22+
}

.obsidian/hotkeys.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"random-note": [
3+
{
4+
"modifiers": [
5+
"Mod",
6+
"Shift"
7+
],
8+
"key": "R"
9+
}
10+
]
11+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"hideStatus": false,
3+
"hideTabs": false,
4+
"hideScroll": true,
5+
"hideSidebarButtons": true,
6+
"hideTooltips": false,
7+
"hideFileNavButtons": false,
8+
"hideSearchSuggestions": false,
9+
"hideSearchCounts": false,
10+
"hideInstructions": false,
11+
"hidePropertiesReading": false,
12+
"hideVault": true
13+
}

.obsidian/plugins/obsidian-hider/main.js

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"id": "obsidian-hider",
3+
"name": "Hider",
4+
"version": "1.5.1",
5+
"minAppVersion": "1.6.0",
6+
"description": "Hide UI elements such as tooltips, status, titlebar and more",
7+
"author": "@kepano",
8+
"authorUrl": "https://www.twitter.com/kepano",
9+
"fundingUrl": "https://www.buymeacoffee.com/kepano",
10+
"isDesktopOnly": false
11+
}
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
/* Hides vault name */
2+
.hider-vault .workspace-sidedock-vault-profile,
3+
body.hider-vault:not(.is-mobile) .workspace-split.mod-left-split .workspace-sidedock-vault-profile {
4+
display:none;
5+
}
6+
7+
/* Hide tabs */
8+
.hider-tabs .mod-root .workspace-tabs .workspace-tab-header-container {
9+
display: none;
10+
}
11+
12+
.hider-tabs .mod-top-left-space .view-header {
13+
padding-left: var(--frame-left-space);
14+
}
15+
16+
/* Hide sidebar buttons */
17+
.hider-sidebar-buttons .sidebar-toggle-button.mod-right,
18+
.hider-sidebar-buttons .sidebar-toggle-button.mod-left {
19+
display: none;
20+
}
21+
.hider-sidebar-buttons.mod-macos.is-hidden-frameless:not(.is-popout-window) .workspace .workspace-tabs.mod-top-right-space .workspace-tab-header-container {
22+
padding-right: 4px;
23+
}
24+
.hider-sidebar-buttons.mod-macos {
25+
--frame-left-space: 60px;
26+
}
27+
28+
/* Hide meta */
29+
.hider-meta .markdown-reading-view .metadata-container {
30+
display:none;
31+
}
32+
33+
/* Hide scrollbars */
34+
.hider-scroll ::-webkit-scrollbar {
35+
display:none;
36+
}
37+
38+
/* Hide status */
39+
.hider-status .status-bar {
40+
display:none;
41+
}
42+
43+
/* Hide tooltips */
44+
.hider-tooltips .tooltip {
45+
display:none;
46+
}
47+
48+
/* Hide search suggestions */
49+
.hider-search-suggestions .suggestion-container.mod-search-suggestion {
50+
display: none;
51+
}
52+
53+
/* Hide search count flair */
54+
.hider-search-counts .tree-item-flair:not(.tag-pane-tag-count) {
55+
display:none;
56+
}
57+
58+
/* Hide instructions */
59+
.hider-instructions .prompt-instructions {
60+
display:none;
61+
}
62+
63+
/* Hide file nav header */
64+
.hider-file-nav-header .workspace-leaf-content[data-type=file-explorer] .nav-header {
65+
display: none;
66+
}

0 commit comments

Comments
 (0)