vault backup: 2024-08-14 16:26:58

This commit is contained in:
2024-08-14 16:26:58 -05:00
parent 649137ced6
commit 1f057109ac
221 changed files with 17428 additions and 74 deletions

3
.obsidian/backlink.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"backlinkInDocument": true
}

View File

@@ -1,5 +1,8 @@
[
"obsidian-git",
"obsidian-importer",
"numerals"
"numerals",
"nldates-obsidian",
"calendar",
"obsidian-linter"
]

View File

@@ -3,11 +3,11 @@
"global-search": true,
"switcher": true,
"graph": true,
"backlink": true,
"backlink": false,
"canvas": true,
"outgoing-link": true,
"tag-pane": true,
"properties": false,
"properties": true,
"page-preview": true,
"daily-notes": true,
"templates": true,
@@ -21,7 +21,7 @@
"random-note": false,
"outline": true,
"word-count": true,
"slides": false,
"slides": true,
"audio-recorder": false,
"workspaces": false,
"file-recovery": true,

View File

@@ -3,10 +3,10 @@
"global-search",
"switcher",
"graph",
"backlink",
"canvas",
"outgoing-link",
"tag-pane",
"properties",
"page-preview",
"daily-notes",
"templates",
@@ -16,5 +16,6 @@
"bookmarks",
"outline",
"word-count",
"slides",
"file-recovery"
]

View File

@@ -1,5 +1,5 @@
{
"format": "YYYY-MM-DD (dddd)",
"autorun": true,
"folder": "Work/Daily Log"
"folder": "/"
}

View File

@@ -17,10 +17,6 @@
"repelStrength": 10,
"linkStrength": 1,
"linkDistance": 250,
<<<<<<< HEAD
"scale": 0.3628873693012147,
=======
"scale": 0.36288736930121507,
>>>>>>> origin/main
"scale": 0.25883865621816327,
"close": false
}

10
.obsidian/plugins/calendar/data.json vendored Normal file
View File

@@ -0,0 +1,10 @@
{
"shouldConfirmBeforeCreate": true,
"weekStart": "locale",
"wordsPerDot": 250,
"showWeeklyNote": false,
"weeklyNoteFormat": "",
"weeklyNoteTemplate": "",
"weeklyNoteFolder": "",
"localeOverride": "system-default"
}

4457
.obsidian/plugins/calendar/main.js vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,10 @@
{
"id": "calendar",
"name": "Calendar",
"description": "Calendar view of your daily notes",
"version": "1.5.10",
"author": "Liam Cain",
"authorUrl": "https://github.com/liamcain/",
"isDesktopOnly": false,
"minAppVersion": "0.9.11"
}

View File

@@ -0,0 +1,12 @@
{
"autosuggestToggleLink": true,
"autocompleteTriggerPhrase": "@",
"isAutosuggestEnabled": true,
"format": "YYYY-MM-DD (dddd)",
"timeFormat": "HH:mm",
"separator": " ",
"weekStart": "locale-default",
"modalToggleTime": false,
"modalToggleLink": false,
"modalMomentFormat": "YYYY-MM-DD HH:mm"
}

9560
.obsidian/plugins/nldates-obsidian/main.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,10 @@
{
"id": "nldates-obsidian",
"name": "Natural Language Dates",
"description": "Create date-links based on natural language",
"version": "0.6.2",
"author": "Argentina Ortega Sainz",
"authorUrl": "https://argentinaos.com/",
"isDesktopOnly": false,
"minAppVersion": "1.0.0"
}

View File

@@ -50,7 +50,9 @@
},
"textColorCss": "var(--text-muted)",
"ignoreWhitespace": false,
"gutterSpacingFallbackLength": 5
"gutterSpacingFallbackLength": 5,
"lastShownAuthorDisplay": "initials",
"lastShownDateTimeFormatOptions": "date"
},
"autoCommitMessage": "vault backup: {{date}}"
}

View File

@@ -0,0 +1,22 @@
{
"ruleConfigs": {},
"lintOnSave": false,
"recordLintOnSaveLogs": false,
"displayChanged": true,
"lintOnFileChange": false,
"displayLintOnFileChangeNotice": false,
"settingsConvertedToConfigKeyValues": true,
"foldersToIgnore": [],
"filesToIgnore": [],
"linterLocale": "system-default",
"logLevel": "ERROR",
"lintCommands": [],
"customRegexes": [],
"commonStyles": {
"aliasArrayStyle": "single-line",
"tagArrayStyle": "single-line",
"minimumNumberOfDollarSignsToBeAMathBlock": 2,
"escapeCharacter": "\"",
"removeUnnecessaryEscapeCharsForMultiLineArrays": false
}
}

2917
.obsidian/plugins/obsidian-linter/main.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,11 @@
{
"id": "obsidian-linter",
"name": "Linter",
"version": "1.25.0",
"minAppVersion": "1.5.7",
"description": "Formats and styles your notes. It can be used to format YAML tags, aliases, arrays, and metadata; footnotes; headings; spacing; math blocks; regular markdown contents like list, italics, and bold styles; and more with the use of custom rule options as well.",
"author": "Victor Tao",
"authorUrl": "https://github.com/platers",
"helpUrl": "https://platers.github.io/obsidian-linter/",
"isDesktopOnly": false
}

View File

@@ -0,0 +1,244 @@
/**
* Based on https://github.com/Fevol/obsidian-translate/blob/master/src/ui/translator-components/SettingsPage.svelte
*/
.linter-navigation-item {
cursor: pointer;
border-radius: 100px;
border: 1px solid var(--background-modifier-border);
border-radius: 8px 8px 2px 2px;
font-weight: bold;
font-size: 16px;
display: flex;
flex-direction: row;
white-space: nowrap;
padding: 4px 6px;
align-items: center;
gap: 4px;
overflow: hidden;
background-color: var(--background-primary-secondary-alt);
transition: color 0.25s ease-in-out,
padding 0.25s ease-in-out,
background-color 0.35s cubic-bezier(0.45, 0.25, 0.83, 0.67),
max-width 0.35s cubic-bezier(0.57, 0.04, 0.58, 1);
height: 32px;
}
@media screen and (max-width: 1325px) {
.linter-navigation-item.linter-desktop {
max-width: 32px;
}
}
@media screen and (max-width: 800px) {
.linter-navigation-item.linter-mobile {
max-width: 32px;
}
}
.linter-navigation-item-icon {
padding-top: 5px;
}
.linter-navigation-item:hover {
border-color: var(--interactive-accent-hover);
border-bottom: 0px;
}
.linter-navigation-item-selected {
background-color: var(--interactive-accent) !important;
color: var(--text-on-accent);
padding: 4px 9px !important;
max-width: 100% !important;
border: 1px solid var(--background-modifier-border);
border-radius: 8px 8px 2px 2px;
border-bottom: 0px;
transition: color 0.25s ease-in-out,
padding 0.25s ease-in-out,
background-color 0.35s cubic-bezier(0.45, 0.25, 0.83, 0.67),
max-width 0.45s cubic-bezier(0.57, 0.04, 0.58, 1) 0.2s;
}
/**
* Based on https://github.com/phibr0/obsidian-commander/blob/main/src/styles.scss
*/
.linter {
transition: transform 400ms 0s;
}
.linter-setting-title {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 30px;
}
.linter-setting-title.linter-mobile {
justify-content: space-around;
}
.linter-setting-title h1 {
font-weight: 900;
margin-top: 6px;
margin-bottom: 12px;
}
.linter-setting-header {
margin-bottom: 24px;
overflow-y: hidden;
overflow-x: auto;
}
.linter-setting-header .linter-setting-tab-group {
display: flex;
align-items: flex-end;
flex-wrap: wrap;
width: 100%;
}
.linter-setting-tab-group {
margin-top: 6px;
padding-left: 2px;
padding-right: 2px;
border-bottom: 2px solid var(--background-modifier-border);
}
.linter-setting-header .linter-tab-settings {
padding: 6px 12px;
font-weight: 600;
cursor: pointer;
white-space: nowrap;
border-left: 2px solid transparent;
border-right: 2px solid transparent;
}
.linter-setting-header .linter-tab-settings:first-child {
margin-left: 6px;
}
.linter-setting-header .linter-tab-settings.linter-tab-settings-active {
border-bottom: 2px solid var(--background-primary);
transform: translateY(2px);
border-radius: 2px;
border-left: 2px solid var(--background-modifier-border);
border-top: 2px solid var(--background-modifier-border);
border-right: 2px solid var(--background-modifier-border);
}
/** Hide linter element css
* Based on https://zellwk.com/blog/hide-content-accessibly/
*/
.linter-navigation-item:not(.linter-navigation-item-selected) > span:nth-child(2),
.linter-visually-hidden {
border: 0;
clip: rect(0 0 0 0);
clip-path: rect(0 0 0 0);
height: auto;
margin: 0;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
white-space: nowrap;
}
/**
* Full-width text areas
* Based on https://github.com/nyable/obsidian-code-block-enhancer/blob/bb0c636c1e7609b6d26c48a8d7ca15d5cd9abdcf/src/styles/index.scss
*/
textarea.full-width {
width: 100%;
min-height: 10em;
margin-top: 0.8em;
margin-bottom: 0.8em;
}
.full-width-textbox-input-wrapper {
position: relative;
}
.settings-copy-button {
position: absolute;
top: 0.8em;
right: 0.8em;
margin: 0 0 0 auto;
padding: 4px;
}
.settings-copy-button svg.linter-clipboard path {
fill: var(--text-faint);
}
.settings-copy-button svg.linter-success path {
fill: var(--interactive-success);
}
.settings-copy-button:hover, .settings-copy-button:active {
cursor: pointer;
}
.settings-copy-button:hover svg path, .settings-copy-button:active svg path {
fill: var(--text-accent-hover);
transition: all ease 0.3s;
}
.settings-copy-button:focus {
outline: 0;
}
/**
* Custom regex replacement
*/
.linter-custom-regex-replacement-container div:last-child {
border: none;
}
.linter-custom-regex-replacement {
margin-bottom: 15px;
border: none;
border-bottom: var(--hr-thickness) solid;
border-color: var(--hr-color);
}
.linter-custom-regex-replacement-row2 {
flex-wrap: wrap;
}
.linter-custom-regex-replacement-normal-input {
width: 40%;
}
.linter-custom-regex-replacement-flags {
width: 15%;
}
.linter-custom-regex-replacement-label {
flex-direction: row-reverse;
}
.linter-custom-regex-replacement-label-input {
width: 50%;
}
/**
* Files to ignore
*/
.linter-files-to-ignore-container div:last-child {
border: none;
}
.linter-files-to-ignore {
margin-bottom: 15px;
border: none;
border-bottom: var(--hr-thickness) solid;
border-color: var(--hr-color);
}
.linter-files-to-ignore-normal-input {
width: 40%;
}
.linter-files-to-ignore-flags {
width: 15%;
}
/**
* Setting item no border
*/
.linter-no-border {
border: none;
}
/**
* Custom row
*/
.custom-row-description {
margin-top: 0px;
}

View File

@@ -11,10 +11,22 @@
"id": "d9b32ed784739835",
"type": "leaf",
"state": {
"type": "markdown",
"type": "diff-view",
"state": {
"file": "Work/Daily Log/2024-08-14 (Wednesday).md",
"staged": false
}
}
},
{
"id": "fdae83f62fe9f68a",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "conflict-files-obsidian-git.md",
"mode": "source",
"backlinks": true,
"source": false
}
}
@@ -85,7 +97,6 @@
"state": {
"type": "backlink",
"state": {
"file": "Work/Daily Log/2024-08-14 (Wednesday).md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
@@ -102,7 +113,6 @@
"state": {
"type": "outgoing-link",
"state": {
"file": "Work/Daily Log/2024-08-14 (Wednesday).md",
"linksCollapsed": false,
"unlinkedCollapsed": false
}
@@ -124,16 +134,23 @@
"type": "leaf",
"state": {
"type": "outline",
"state": {
"file": "Work/Daily Log/2024-08-14 (Wednesday).md"
}
"state": {}
}
},
{
"id": "e97c6f1864abb7d2",
"type": "leaf",
"state": {
"type": "git-view",
"state": {}
}
}
]
],
"currentTab": 4
}
],
"direction": "horizontal",
"width": 380.5
"width": 807.5
},
"left-ribbon": {
"hiddenItems": {
@@ -146,45 +163,44 @@
"obsidian-importer:Open Importer": false
}
},
"active": "d9b32ed784739835",
"active": "e97c6f1864abb7d2",
"lastOpenFiles": [
"Quick Notes/Truck notes.md",
"Work/Daily Log/2024-08-14 (Wednesday).md",
"Quick Notes/Tow of Ranger.md",
"Quick Notes/Things to appreciate about Grace.md",
"Home/Shades to sell.md",
"Quick Notes/Notes on Brock's YouTube channel messages regarding the Lord's Supper.md",
"Quick Notes/Nightstand 26 by 17 by 26.md",
"Church/Prayer meeting notes/Jeremy Bassett, Burundi work prayer requests.md",
"Quick Notes/Possible next five aspects study guys.md",
"Shopping/Aldi.md",
"Quick Notes/Countries I've visited.md",
"Recipes/Brisket.md",
"Bible Study/Messages/Messages ideas for 9292019.md",
"Church/Next book club.md",
"Shopping/Jozwick Sams list.md",
"Quick Notes/Songs.md",
"Quick Notes/Small group ideas 2015.md",
"Quick Notes/Q for Anthony.md",
"Quick Notes/Pros and cons of moving to Kansas.md",
"Quick Notes/Scores.md",
"Quick Notes/Sunday school songs.md",
"Quick Notes/Text to Joel.md",
"Quick Notes/Todo.md",
"Shopping/Shopping list.md",
"Shopping/Sams.md",
"Church/Prayer meeting notes/Prayer requests.md",
"Work/Daily Log",
"Quick Notes/Truck notes.md",
"conflict-files-obsidian-git.md",
"Work/Payments Team.md",
"Work/New Platform Alerting.md",
"Work/MarTech Team.md",
"Work/Commerce Team.md",
"Work/Business Solutions Group.md",
"Work/Business Enablement Team.md",
"People/Toby Steele.md",
"People/Ricardo Blanco.md",
"People/Randall Knutson.md",
"People/Oscar Martin.md",
"People/Nic Hoza.md",
"People/Nolan Stidham.md",
"People/Nate Merritt.md",
"People/Natalie Winburn.md",
"People/Mitch Snyder.md",
"People/Mitch Myers.md",
"People/Mike Haines.md",
"People/Michael Fisher.md",
"People/Kate Neale.md",
"People/Josh Grantham.md",
"People/Joe Caun.md",
"People/Edgar Martinez.md",
"People",
"Shopping",
"Personal",
"Home",
"Work/Daily Log",
"Work/2024-08-05 Duplicate billing profile bug hunting (BEN-1564).canvas",
"Church/Prayer meeting notes",
"Bible Study/Romans",
"Bible Study/Psalms",
"Bible Study/Hebrews",
"Bible Study/Galatians",
"Bible Study/1 Thessalonians",
"_Attachments/Exported image 20240808113933-0.gif",
"_Attachments/Exported image 20240808113924-0.png",
"_Attachments/Exported image 20240808113917-0 1.jpeg",

1
.obsidian/workspaces.json vendored Normal file
View File

@@ -0,0 +1 @@
{}

3
.obsidian/zk-prefixer.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"folder": "/"
}