Skip to content

Commit f8915d7

Browse files
committed
Add obsidian settings
1 parent 5b18139 commit f8915d7

File tree

16 files changed

+2639
-0
lines changed

16 files changed

+2639
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/public
22
zola.exe
33
**/.obsidian/plugins/languagetool/data.json
4+
**/.obsidian/workspace.json

content/posts/.obsidian/app.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"cssTheme": "Minimal",
3+
"interfaceFontFamily": "",
4+
"textFontFamily": "Atkinson Hyperlegible Next",
5+
"monospaceFontFamily": "Atkinson Hyperlegible Mono",
6+
"baseFontSize": 18
7+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[
2+
"languagetool",
3+
"obsidian-minimal-settings",
4+
"zola-shortcodes"
5+
]
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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": true,
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": true,
30+
"webviewer": false
31+
}

content/posts/.obsidian/plugins/languagetool/main.js

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"id": "languagetool",
3+
"name": "LanguageTool",
4+
"version": "1.2.0",
5+
"minAppVersion": "1.7.2",
6+
"description": "Unofficial integration of the LanguageTool spell and grammar checker.",
7+
"author": "Lars Wrenger, Clemens Ertle",
8+
"authorUrl": "https://github.com/wrenger",
9+
"isDesktopOnly": false
10+
}
Lines changed: 204 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,204 @@
1+
:root {
2+
--lt-minor: #e9b35f;
3+
--lt-major: #da615c;
4+
--lt-style: #8981f3;
5+
}
6+
7+
.lt-settings-btn {
8+
margin-bottom: 5px;
9+
}
10+
.lt-settings-grid {
11+
display: inline-grid;
12+
}
13+
14+
.lt-underline {
15+
cursor: pointer;
16+
transition: background-color 100ms ease-out;
17+
}
18+
19+
.lt-underline.lt-minor {
20+
text-decoration: wavy underline var(--lt-minor);
21+
-webkit-text-decoration: wavy underline var(--lt-minor);
22+
&:hover {
23+
background-color: color-mix(in srgb, var(--lt-minor), transparent 80%);
24+
}
25+
}
26+
27+
.lt-underline.lt-major {
28+
text-decoration: wavy underline var(--lt-major);
29+
-webkit-text-decoration: wavy underline var(--lt-major);
30+
&:hover {
31+
background-color: color-mix(in srgb, var(--lt-major), transparent 80%);
32+
}
33+
}
34+
35+
.lt-underline.lt-style {
36+
text-decoration: wavy underline var(--lt-style);
37+
-webkit-text-decoration: wavy underline var(--lt-style);
38+
&:hover {
39+
background-color: color-mix(in srgb, var(--lt-style), transparent 80%);
40+
}
41+
}
42+
43+
@keyframes lineInserted {
44+
from {
45+
opacity: 0;
46+
}
47+
to {
48+
opacity: 1;
49+
}
50+
}
51+
52+
.lt-predictions-container.cm-tooltip,
53+
.lt-predictions-container {
54+
position: absolute;
55+
animation-duration: 150ms;
56+
animation-name: lineInserted;
57+
font-family: var(--default-font);
58+
font-size: 0.93rem;
59+
padding: 12px 0 0;
60+
background-color: var(--background-primary);
61+
border: 1px solid var(--background-modifier-border);
62+
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
63+
border-radius: 6px;
64+
width: 300px;
65+
line-height: 1.5;
66+
z-index: var(--layer-popover);
67+
overflow: visible;
68+
}
69+
70+
.lt-predictions-container > button {
71+
transition-delay: 0.5s;
72+
}
73+
74+
.lt-buttoncontainer {
75+
&:not(:empty) {
76+
padding-top: 10px;
77+
}
78+
& > button {
79+
margin-right: 4px;
80+
margin-bottom: 4px;
81+
padding: 4px 10px;
82+
}
83+
}
84+
85+
.lt-title {
86+
display: block;
87+
font-weight: 600;
88+
margin-bottom: 6px;
89+
padding: 0 12px;
90+
}
91+
92+
.lt-message {
93+
padding: 0 12px;
94+
display: block;
95+
}
96+
97+
.lt-bottom {
98+
min-height: 10px;
99+
padding: 0 12px;
100+
position: relative;
101+
}
102+
103+
.lt-info-container {
104+
position: absolute;
105+
right: 0;
106+
bottom: 0;
107+
}
108+
109+
.lt-info-button {
110+
color: var(--text-faint);
111+
}
112+
113+
.lt-info-box {
114+
position: absolute;
115+
right: 0;
116+
animation: lineInserted 150ms;
117+
font-family: var(--default-font);
118+
font-size: 0.93rem;
119+
padding: 12px 0;
120+
background-color: var(--background-primary);
121+
border: 1px solid var(--background-modifier-border);
122+
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
123+
border-radius: 6px;
124+
line-height: 1.5;
125+
z-index: var(--layer-popover);
126+
overflow: hidden;
127+
}
128+
129+
.hidden {
130+
display: none;
131+
}
132+
133+
.lt-info {
134+
padding: 0 12px;
135+
display: block;
136+
font-size: 0.8rem;
137+
color: var(--text-muted);
138+
user-select: text;
139+
}
140+
141+
.lt-ignorecontainer {
142+
display: flex;
143+
}
144+
145+
.lt-status-bar-btn {
146+
height: 100%;
147+
display: flex;
148+
cursor: pointer;
149+
line-height: 1;
150+
align-items: center;
151+
}
152+
153+
.lt-status-bar-check-icon {
154+
display: block;
155+
text-decoration: underline dotted;
156+
-webkit-text-decoration: underline dotted;
157+
}
158+
159+
.lt-ignore-btn {
160+
margin: 0;
161+
padding: 12px;
162+
display: flex;
163+
width: 100%;
164+
text-align: left;
165+
border-radius: 0;
166+
align-items: center;
167+
line-height: 1;
168+
border-top: 1px solid var(--background-modifier-border);
169+
& > span {
170+
display: flex;
171+
&:last-child {
172+
margin-left: 5px;
173+
}
174+
}
175+
}
176+
177+
.lt-minor > .lt-title > span {
178+
text-decoration: underline 2px var(--lt-minor);
179+
-webkit-text-decoration: underline 2px var(--lt-minor);
180+
}
181+
.lt-major > .lt-title > span {
182+
text-decoration: underline 2px var(--lt-major);
183+
-webkit-text-decoration: underline 2px var(--lt-major);
184+
}
185+
.lt-style > .lt-title > span {
186+
text-decoration: underline 2px var(--lt-style);
187+
-webkit-text-decoration: underline 2px var(--lt-style);
188+
}
189+
190+
.lt-loading > svg {
191+
animation-name: spin;
192+
animation-duration: 1s;
193+
animation-iteration-count: infinite;
194+
animation-timing-function: linear;
195+
}
196+
197+
@keyframes spin {
198+
from {
199+
transform: rotate(0deg);
200+
}
201+
to {
202+
transform: rotate(360deg);
203+
}
204+
}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"lightStyle": "minimal-light",
3+
"darkStyle": "minimal-dark",
4+
"lightScheme": "minimal-default-light",
5+
"darkScheme": "minimal-things-dark",
6+
"editorFont": "",
7+
"lineHeight": 1.5,
8+
"lineWidth": 40,
9+
"lineWidthWide": 60,
10+
"maxWidth": 88,
11+
"textNormal": 18,
12+
"textSmall": 13,
13+
"imgGrid": false,
14+
"imgWidth": "img-default-width",
15+
"tableWidth": "table-default-width",
16+
"iframeWidth": "iframe-default-width",
17+
"mapWidth": "map-default-width",
18+
"chartWidth": "chart-default-width",
19+
"colorfulHeadings": false,
20+
"colorfulFrame": false,
21+
"colorfulActiveStates": false,
22+
"trimNames": true,
23+
"labeledNav": false,
24+
"fullWidthMedia": true,
25+
"bordersToggle": true,
26+
"minimalStatus": true,
27+
"focusMode": false,
28+
"underlineInternal": true,
29+
"underlineExternal": true,
30+
"folding": true,
31+
"lineNumbers": false,
32+
"readableLineLength": true,
33+
"devBlockWidth": false
34+
}

content/posts/.obsidian/plugins/obsidian-minimal-settings/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.

0 commit comments

Comments
 (0)