Skip to content

Commit 57b9ebb

Browse files
HypnoAntwizzdom
andauthored
Update to Resemble Open Governance Obsidian (#42)
* Updated Obsidian Settings to Copy Open-Governance, Edited all Created Dates to Date of first commit, Edited all Modified Dates to date of last modified commit * oops left that in * remove obsidian plugins apart from configs * ignore plugins folder except for config data * remove themes * ignore themes and venv * fix nix times * Updated README --------- Co-authored-by: wizzdom <[email protected]>
1 parent 7e8c0e4 commit 57b9ebb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+635
-2216
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@ docs/.obsidian/workspace.json
33
docs/.obsidian/graph.json
44
.cache/
55
venv/
6+
.venv/
7+
docs/.obsidian/plugins/
8+
!docs/.obsidian/plugins/*/data.json
9+
docs/.obsidian/themes/

README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
11
# Redbrick docs
2-
The home for all Redbrick technical documentation
2+
The home for all Redbrick technical documentation
33
[docs.redbrick.dcu.ie](https://docs.redbrick.dcu.ie)
4+
5+
## Obsidian
6+
For use with obsidian we reccommend the following plugins.
7+
- Advanced Tables by Tony Grosinger [Github](https://github.com/tgrosinger/advanced-tables-obsidian) [Obsidian](obsidian://show-plugin?id=table-editor-obsidian)
8+
- Git by Vinzent, (Denis Olehov) [Github](https://github.com/Vinzent03/obsidian-git) [Obsidian](obsidian://show-plugin?id=obsidian-git)
9+
- Minimal Theme Settings by @kepano [Github](https://github.com/kepano/obsidian-minimal-settings) [Obsidian](obsidian://show-plugin?id=obsidian-minimal-settings)
10+
- Linter by Virctor Tao [Github](https://github.com/platers/obsidian-linter) [Obsidian](obsidian://show-plugin?id=obsidian-linter)
11+
12+
To Enable these plugins go to Settings > Community Plugins > Turn On Community Plugins > Browse. Search, Install and Enable each of the plugins above.

docs/.obsidian/app.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
{
2+
"promptDelete": false,
3+
"alwaysUpdateLinks": true,
24
"useMarkdownLinks": true,
35
"newLinkFormat": "relative",
4-
"alwaysUpdateLinks": true,
6+
"newFileLocation": "current",
57
"showUnsupportedFiles": true,
6-
"attachmentFolderPath": "assets"
8+
"attachmentFolderPath": "res"
79
}

docs/.obsidian/appearance.json

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
22
"accentColor": "#c53030",
33
"cssTheme": "Minimal",
4-
"nativeMenus": false,
5-
"baseFontSize": 17,
64
"theme": "obsidian"
75
}

docs/.obsidian/community-plugins.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[
22
"table-editor-obsidian",
3+
"obsidian-git",
34
"obsidian-linter",
4-
"obsidian-minimal-settings",
5-
"obsidian-git"
5+
"obsidian-minimal-settings"
66
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"commitMessage": "vault backup: {{date}}",
3+
"commitDateFormat": "YYYY-MM-DD HH:mm:ss",
4+
"autoSaveInterval": 0,
5+
"autoPushInterval": 0,
6+
"autoPullInterval": 0,
7+
"autoPullOnBoot": false,
8+
"disablePush": false,
9+
"pullBeforePush": true,
10+
"disablePopups": false,
11+
"listChangedFilesInMessageBody": true,
12+
"showStatusBar": true,
13+
"updateSubmodules": false,
14+
"syncMethod": "merge",
15+
"customMessageOnAutoBackup": false,
16+
"autoBackupAfterFileChange": false,
17+
"treeStructure": true,
18+
"refreshSourceControl": true,
19+
"basePath": "",
20+
"differentIntervalCommitAndPush": false,
21+
"changedFilesInStatusBar": true,
22+
"showedMobileNotice": true,
23+
"refreshSourceControlTimer": 7000,
24+
"showBranchStatusBar": true,
25+
"setLastSaveToLastCommit": false,
26+
"submoduleRecurseCheckout": false,
27+
"gitDir": "",
28+
"showFileMenu": true,
29+
"lineAuthor": {
30+
"show": false,
31+
"followMovement": "inactive",
32+
"authorDisplay": "initials",
33+
"showCommitHash": false,
34+
"dateTimeFormatOptions": "date",
35+
"dateTimeFormatCustomString": "YYYY-MM-DD HH:mm",
36+
"dateTimeTimezone": "viewer-local",
37+
"coloringMaxAge": "1y",
38+
"colorNew": {
39+
"r": 255,
40+
"g": 150,
41+
"b": 150
42+
},
43+
"colorOld": {
44+
"r": 120,
45+
"g": 160,
46+
"b": 255
47+
},
48+
"textColorCss": "var(--text-muted)",
49+
"ignoreWhitespace": false,
50+
"gutterSpacingFallbackLength": 5,
51+
"lastShownAuthorDisplay": "initials",
52+
"lastShownDateTimeFormatOptions": "date"
53+
},
54+
"autoCommitMessage": "vault backup: {{date}}"
55+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,266 @@
1+
{
2+
"ruleConfigs": {
3+
"add-blank-line-after-yaml": {
4+
"enabled": true
5+
},
6+
"escape-yaml-special-characters": {
7+
"enabled": false,
8+
"try-to-escape-single-line-arrays": false
9+
},
10+
"force-yaml-escape": {
11+
"enabled": false,
12+
"force-yaml-escape-keys": ""
13+
},
14+
"format-tags-in-yaml": {
15+
"enabled": true
16+
},
17+
"format-yaml-array": {
18+
"enabled": false,
19+
"alias-key": true,
20+
"tag-key": true,
21+
"default-array-style": "single-line",
22+
"default-array-keys": true,
23+
"force-single-line-array-style": "",
24+
"force-multi-line-array-style": ""
25+
},
26+
"insert-yaml-attributes": {
27+
"enabled": false,
28+
"text-to-insert": "aliases: \ntags: "
29+
},
30+
"move-tags-to-yaml": {
31+
"enabled": true,
32+
"how-to-handle-existing-tags": "Nothing",
33+
"tags-to-ignore": ""
34+
},
35+
"remove-yaml-keys": {
36+
"enabled": false,
37+
"yaml-keys-to-remove": ""
38+
},
39+
"yaml-key-sort": {
40+
"enabled": true,
41+
"yaml-key-priority-sort-order": "title\ncreated\nmodified\ntags",
42+
"priority-keys-at-start-of-yaml": true,
43+
"yaml-sort-order-for-other-keys": "Ascending Alphabetical"
44+
},
45+
"yaml-timestamp": {
46+
"enabled": true,
47+
"date-created": true,
48+
"date-created-key": "created",
49+
"force-retention-of-create-value": true,
50+
"date-modified": true,
51+
"date-modified-key": "modified",
52+
"format": "YYYY-MM-DDTHH:mm:ss"
53+
},
54+
"yaml-title": {
55+
"enabled": true,
56+
"title-key": "title",
57+
"mode": "filename"
58+
},
59+
"yaml-title-alias": {
60+
"enabled": false,
61+
"preserve-existing-alias-section-style": true,
62+
"keep-alias-that-matches-the-filename": false,
63+
"use-yaml-key-to-keep-track-of-old-filename-or-heading": true
64+
},
65+
"capitalize-headings": {
66+
"enabled": true,
67+
"style": "Title Case",
68+
"ignore-case-words": true,
69+
"ignore-words": "macOS, iOS, iPhone, iPad, JavaScript, TypeScript, AppleScript, I",
70+
"lowercase-words": "a, an, the, aboard, about, abt., above, abreast, absent, across, after, against, along, aloft, alongside, amid, amidst, mid, midst, among, amongst, anti, apropos, around, round, as, aslant, astride, at, atop, ontop, bar, barring, before, B4, behind, below, beneath, neath, beside, besides, between, 'tween, beyond, but, by, chez, circa, c., ca., come, concerning, contra, counting, cum, despite, spite, down, during, effective, ere, except, excepting, excluding, failing, following, for, from, in, including, inside, into, less, like, minus, modulo, mod, near, nearer, nearest, next, notwithstanding, of, o', off, offshore, on, onto, opposite, out, outside, over, o'er, pace, past, pending, per, plus, post, pre, pro, qua, re, regarding, respecting, sans, save, saving, short, since, sub, than, through, thru, throughout, thruout, till, times, to, t', touching, toward, towards, under, underneath, unlike, until, unto, up, upon, versus, vs., v., via, vice, vis-à-vis, wanting, with, w/, w., c̄, within, w/i, without, 'thout, w/o, abroad, adrift, aft, afterward, afterwards, ahead, apart, ashore, aside, away, back, backward, backwards, beforehand, downhill, downstage, downstairs, downstream, downward, downwards, downwind, east, eastward, eastwards, forth, forward, forwards, heavenward, heavenwards, hence, henceforth, here, hereby, herein, hereof, hereto, herewith, home, homeward, homewards, indoors, inward, inwards, leftward, leftwards, north, northeast, northward, northwards, northwest, now, onward, onwards, outdoors, outward, outwards, overboard, overhead, overland, overseas, rightward, rightwards, seaward, seawards, skywards, skyward, south, southeast, southwards, southward, southwest, then, thence, thenceforth, there, thereby, therein, thereof, thereto, therewith, together, underfoot, underground, uphill, upstage, upstairs, upstream, upward, upwards, upwind, west, westward, westwards, when, whence, where, whereby, wherein, whereto, wherewith, although, because, considering, given, granted, if, lest, once, provided, providing, seeing, so, supposing, though, unless, whenever, whereas, wherever, while, whilst, ago, according to, as regards, counter to, instead of, owing to, pertaining to, at the behest of, at the expense of, at the hands of, at risk of, at the risk of, at variance with, by dint of, by means of, by virtue of, by way of, for the sake of, for sake of, for lack of, for want of, from want of, in accordance with, in addition to, in case of, in charge of, in compliance with, in conformity with, in contact with, in exchange for, in favor of, in front of, in lieu of, in light of, in the light of, in line with, in place of, in point of, in quest of, in relation to, in regard to, with regard to, in respect to, with respect to, in return for, in search of, in step with, in touch with, in terms of, in the name of, in view of, on account of, on behalf of, on grounds of, on the grounds of, on the part of, on top of, with a view to, with the exception of, à la, a la, as soon as, as well as, close to, due to, far from, in case, other than, prior to, pursuant to, regardless of, subsequent to, as long as, as much as, as far as, by the time, in as much as, inasmuch, in order to, in order that, even, provide that, if only, whether, whose, whoever, why, how, or not, whatever, what, both, and, or, not only, but also, either, neither, nor, just, rather, no sooner, such, that, yet, is, it"
71+
},
72+
"file-name-heading": {
73+
"enabled": false
74+
},
75+
"header-increment": {
76+
"enabled": false,
77+
"start-at-h2": false
78+
},
79+
"headings-start-line": {
80+
"enabled": true
81+
},
82+
"remove-trailing-punctuation-in-heading": {
83+
"enabled": true,
84+
"punctuation-to-remove": ".,;:!。,;:!"
85+
},
86+
"footnote-after-punctuation": {
87+
"enabled": true
88+
},
89+
"move-footnotes-to-the-bottom": {
90+
"enabled": true
91+
},
92+
"re-index-footnotes": {
93+
"enabled": true
94+
},
95+
"auto-correct-common-misspellings": {
96+
"enabled": false,
97+
"ignore-words": ""
98+
},
99+
"blockquote-style": {
100+
"enabled": false,
101+
"style": "space"
102+
},
103+
"convert-bullet-list-markers": {
104+
"enabled": false
105+
},
106+
"default-language-for-code-fences": {
107+
"enabled": false,
108+
"default-language": ""
109+
},
110+
"emphasis-style": {
111+
"enabled": false,
112+
"style": "consistent"
113+
},
114+
"no-bare-urls": {
115+
"enabled": false,
116+
"no-bare-uris": false
117+
},
118+
"ordered-list-style": {
119+
"enabled": false,
120+
"number-style": "ascending",
121+
"list-end-style": "."
122+
},
123+
"proper-ellipsis": {
124+
"enabled": true
125+
},
126+
"quote-style": {
127+
"enabled": false,
128+
"single-quote-enabled": true,
129+
"single-quote-style": "''",
130+
"double-quote-enabled": true,
131+
"double-quote-style": "\"\""
132+
},
133+
"remove-consecutive-list-markers": {
134+
"enabled": false
135+
},
136+
"remove-empty-list-markers": {
137+
"enabled": false
138+
},
139+
"remove-hyphenated-line-breaks": {
140+
"enabled": true
141+
},
142+
"remove-multiple-spaces": {
143+
"enabled": false
144+
},
145+
"strong-style": {
146+
"enabled": false,
147+
"style": "consistent"
148+
},
149+
"two-spaces-between-lines-with-content": {
150+
"enabled": false
151+
},
152+
"unordered-list-style": {
153+
"enabled": false,
154+
"list-style": "consistent"
155+
},
156+
"compact-yaml": {
157+
"enabled": true,
158+
"inner-new-lines": false
159+
},
160+
"consecutive-blank-lines": {
161+
"enabled": true
162+
},
163+
"convert-spaces-to-tabs": {
164+
"enabled": false,
165+
"tabsize": 4
166+
},
167+
"empty-line-around-blockquotes": {
168+
"enabled": true
169+
},
170+
"empty-line-around-code-fences": {
171+
"enabled": true
172+
},
173+
"empty-line-around-math-blocks": {
174+
"enabled": true
175+
},
176+
"empty-line-around-tables": {
177+
"enabled": true
178+
},
179+
"heading-blank-lines": {
180+
"enabled": true,
181+
"bottom": true,
182+
"empty-line-after-yaml": true
183+
},
184+
"line-break-at-document-end": {
185+
"enabled": true
186+
},
187+
"move-math-block-indicators-to-their-own-line": {
188+
"enabled": false
189+
},
190+
"paragraph-blank-lines": {
191+
"enabled": true
192+
},
193+
"remove-empty-lines-between-list-markers-and-checklists": {
194+
"enabled": false
195+
},
196+
"remove-link-spacing": {
197+
"enabled": false
198+
},
199+
"remove-space-around-characters": {
200+
"enabled": false,
201+
"include-fullwidth-forms": true,
202+
"include-cjk-symbols-and-punctuation": true,
203+
"include-dashes": true,
204+
"other-symbols": ""
205+
},
206+
"remove-space-before-or-after-characters": {
207+
"enabled": false,
208+
"characters-to-remove-space-before": ",!?;:).’”]",
209+
"characters-to-remove-space-after": "¿¡‘“(["
210+
},
211+
"space-after-list-markers": {
212+
"enabled": true
213+
},
214+
"space-between-chinese-japanese-or-korean-and-english-or-numbers": {
215+
"enabled": false
216+
},
217+
"trailing-spaces": {
218+
"enabled": false,
219+
"twp-space-line-break": false
220+
},
221+
"add-blockquote-indentation-on-paste": {
222+
"enabled": false
223+
},
224+
"prevent-double-checklist-indicator-on-paste": {
225+
"enabled": false
226+
},
227+
"prevent-double-list-item-indicator-on-paste": {
228+
"enabled": false
229+
},
230+
"proper-ellipsis-on-paste": {
231+
"enabled": false
232+
},
233+
"remove-hyphens-on-paste": {
234+
"enabled": false
235+
},
236+
"remove-leading-or-trailing-whitespace-on-paste": {
237+
"enabled": false
238+
},
239+
"remove-leftover-footnotes-from-quote-on-paste": {
240+
"enabled": false
241+
},
242+
"remove-multiple-blank-lines-on-paste": {
243+
"enabled": false
244+
}
245+
},
246+
"lintOnSave": true,
247+
"recordLintOnSaveLogs": false,
248+
"displayChanged": false,
249+
"lintOnFileChange": false,
250+
"displayLintOnFileChangeNotice": false,
251+
"settingsConvertedToConfigKeyValues": true,
252+
"foldersToIgnore": [
253+
"templates"
254+
],
255+
"linterLocale": "system-default",
256+
"logLevel": "ERROR",
257+
"lintCommands": [],
258+
"customRegexes": [],
259+
"commonStyles": {
260+
"aliasArrayStyle": "single-line",
261+
"tagArrayStyle": "single-line",
262+
"minimumNumberOfDollarSignsToBeAMathBlock": 2,
263+
"escapeCharacter": "\"",
264+
"removeUnnecessaryEscapeCharsForMultiLineArrays": false
265+
}
266+
}

0 commit comments

Comments
 (0)