1
0

Add .obisidan so we can share between machines.

This commit is contained in:
2025-12-09 15:52:10 +01:00
parent 81790199af
commit 17475e6955
41 changed files with 33630 additions and 2 deletions

12
content/.obsidian/app.json vendored Normal file
View File

@@ -0,0 +1,12 @@
{
"promptDelete": false,
"alwaysUpdateLinks": true,
"newFileLocation": "current",
"spellcheck": false,
"tabSize": 4,
"attachmentFolderPath": "attachments",
"showInlineTitle": true,
"strictLineBreaks": true,
"showLineNumber": false,
"readableLineLength": false
}

View File

@@ -0,0 +1,12 @@
[
"obsidian-git",
"omnisearch",
"text-extractor",
"spoiler-block-obsidian",
"pretty-properties",
"dataview",
"emoji-shortcodes",
"obsidian42-brat",
"agent-client",
"manual-sorting"
]

33
content/.obsidian/core-plugins.json vendored Normal file
View File

@@ -0,0 +1,33 @@
{
"file-explorer": true,
"global-search": true,
"switcher": true,
"graph": true,
"backlink": false,
"canvas": true,
"outgoing-link": true,
"tag-pane": true,
"footnotes": false,
"properties": true,
"page-preview": false,
"daily-notes": false,
"templates": true,
"note-composer": true,
"command-palette": true,
"slash-command": true,
"editor-status": true,
"bookmarks": false,
"markdown-importer": false,
"zk-prefixer": false,
"random-note": false,
"outline": true,
"word-count": true,
"slides": false,
"audio-recorder": false,
"workspaces": false,
"file-recovery": true,
"publish": false,
"sync": false,
"bases": true,
"webviewer": false
}

20
content/.obsidian/hotkeys.json vendored Normal file
View File

@@ -0,0 +1,20 @@
{
"omnisearch:show-modal": [
{
"modifiers": [
"Mod",
"Shift"
],
"key": "O"
}
],
"editor:toggle-source": [
{
"modifiers": [
"Mod"
],
"key": "S"
}
],
"editor:save-file": []
}

3
content/.obsidian/page-preview.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"file-explorer": false
}

View File

@@ -0,0 +1,42 @@
{
"claude": {
"id": "claude-code-acp",
"displayName": "Claude Code",
"apiKey": "",
"command": "",
"args": [],
"env": []
},
"codex": {
"id": "codex-acp",
"displayName": "Codex",
"apiKey": "",
"command": "/opt/homebrew/bin/codex-acp",
"args": [],
"env": []
},
"gemini": {
"id": "gemini-cli",
"displayName": "Gemini CLI",
"apiKey": "",
"command": "",
"args": [
"--experimental-acp"
],
"env": []
},
"customAgents": [],
"activeAgentId": "codex-acp",
"autoAllowPermissions": false,
"autoMentionActiveNote": true,
"debugMode": false,
"nodePath": "/opt/homebrew/bin/node",
"exportSettings": {
"defaultFolder": "Agent Client",
"filenameTemplate": "agent_client_{date}_{time}",
"autoExportOnNewChat": false,
"autoExportOnCloseChat": false,
"openFileAfterExport": true
},
"windowsWslMode": false
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
{"id":"agent-client","name":"Agent Client","version":"0.4.0-preview.2","minAppVersion":"0.15.0","description":"Chat with AI agents via the Agent Client Protocol directly from your vault.","author":"RAIT-09","authorUrl":"https://github.com/RAIT-09","fundingUrl":"https://www.buymeacoffee.com/rait09","isDesktopOnly":true}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,27 @@
{
"renderNullAs": "\\-",
"taskCompletionTracking": false,
"taskCompletionUseEmojiShorthand": false,
"taskCompletionText": "completion",
"taskCompletionDateFormat": "yyyy-MM-dd",
"recursiveSubTaskCompletion": false,
"warnOnEmptyResult": true,
"refreshEnabled": true,
"refreshInterval": 2500,
"defaultDateFormat": "MMMM dd, yyyy",
"defaultDateTimeFormat": "h:mm a - MMMM dd, yyyy",
"maxRecursiveRenderDepth": 4,
"tableIdColumnName": "File",
"tableGroupColumnName": "Group",
"showResultCount": true,
"allowHtml": true,
"inlineQueryPrefix": "=",
"inlineJsQueryPrefix": "$=",
"inlineQueriesInCodeblocks": true,
"enableInlineDataview": true,
"enableDataviewJs": true,
"enableInlineDataviewJs": true,
"prettyRenderInlineFields": true,
"prettyRenderInlineFieldsInLivePreview": true,
"dataviewJsKeyword": "dataviewjs"
}

20876
content/.obsidian/plugins/dataview/main.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,11 @@
{
"id": "dataview",
"name": "Dataview",
"version": "0.5.68",
"minAppVersion": "0.13.11",
"description": "Complex data views for the data-obsessed.",
"author": "Michael Brenan <blacksmithgu@gmail.com>",
"authorUrl": "https://github.com/blacksmithgu",
"helpUrl": "https://blacksmithgu.github.io/obsidian-dataview/",
"isDesktopOnly": false
}

View File

@@ -0,0 +1,141 @@
.block-language-dataview {
overflow-y: auto;
}
/*****************/
/** Table Views **/
/*****************/
/* List View Default Styling; rendered internally as a table. */
.table-view-table {
width: 100%;
}
.table-view-table > thead > tr, .table-view-table > tbody > tr {
margin-top: 1em;
margin-bottom: 1em;
text-align: left;
}
.table-view-table > tbody > tr:hover {
background-color: var(--table-row-background-hover);
}
.table-view-table > thead > tr > th {
font-weight: 700;
font-size: larger;
border-top: none;
border-left: none;
border-right: none;
border-bottom: solid;
max-width: 100%;
}
.table-view-table > tbody > tr > td {
text-align: left;
border: none;
font-weight: 400;
max-width: 100%;
}
.table-view-table ul, .table-view-table ol {
margin-block-start: 0.2em !important;
margin-block-end: 0.2em !important;
}
/** Rendered value styling for any view. */
.dataview-result-list-root-ul {
padding: 0em !important;
margin: 0em !important;
}
.dataview-result-list-ul {
margin-block-start: 0.2em !important;
margin-block-end: 0.2em !important;
}
/** Generic grouping styling. */
.dataview.result-group {
padding-left: 8px;
}
/*******************/
/** Inline Fields **/
/*******************/
.dataview.inline-field-key {
padding-left: 8px;
padding-right: 8px;
font-family: var(--font-monospace);
background-color: var(--background-primary-alt);
color: var(--nav-item-color-selected);
}
.dataview.inline-field-value {
padding-left: 8px;
padding-right: 8px;
font-family: var(--font-monospace);
background-color: var(--background-secondary-alt);
color: var(--nav-item-color-selected);
}
.dataview.inline-field-standalone-value {
padding-left: 8px;
padding-right: 8px;
font-family: var(--font-monospace);
background-color: var(--background-secondary-alt);
color: var(--nav-item-color-selected);
}
/***************/
/** Task View **/
/***************/
.dataview.task-list-item, .dataview.task-list-basic-item {
margin-top: 3px;
margin-bottom: 3px;
transition: 0.4s;
}
.dataview.task-list-item:hover, .dataview.task-list-basic-item:hover {
background-color: var(--text-selection);
box-shadow: -40px 0 0 var(--text-selection);
cursor: pointer;
}
/*****************/
/** Error Views **/
/*****************/
div.dataview-error-box {
width: 100%;
min-height: 150px;
display: flex;
align-items: center;
justify-content: center;
border: 4px dashed var(--background-secondary);
}
.dataview-error-message {
color: var(--text-muted);
text-align: center;
}
/*************************/
/** Additional Metadata **/
/*************************/
.dataview.small-text {
font-size: smaller;
color: var(--text-muted);
margin-left: 3px;
}
.dataview.small-text::before {
content: "(";
}
.dataview.small-text::after {
content: ")";
}

View File

@@ -0,0 +1,26 @@
{
"immediateReplace": true,
"suggester": true,
"historyPriority": true,
"historyLimit": 100,
"history": [
":railway_track:",
":five:",
":drop_of_blood:",
":books:",
":open_mouth:",
":meat_on_bone:",
":lemon:",
":electric_plug:",
":mechanical_arm:",
":potable_water:",
":currency_exchange:",
":heavy_minus_sign:",
":heavy_plus_sign:",
":biohazard:",
":fuelpump:",
":crown:",
":brain:",
":bike:"
]
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,11 @@
{
"id": "emoji-shortcodes",
"name": "Emoji Shortcodes",
"version": "2.2.0",
"minAppVersion": "1.0.0",
"description": "This Plugin enables the use of Markdown Emoji Shortcodes :smile:",
"author": "phibr0",
"authorUrl": "https://github.com/phibr0",
"isDesktopOnly": false,
"fundingUrl": "https://ko-fi.com/phibr0"
}

View File

@@ -0,0 +1,31 @@
a[href="https://ko-fi.com/phibr0"] > img
{
height: 3em;
}
a[href="https://ko-fi.com/phibr0"]
{
transform: translate(0, 5%);
}
.ES-suggester-container {
display: flex;
place-content: space-between;
}
.ES-shortcode {
margin-right: 8px;
}
.ES-suggestion-item {
border-top: solid var(--background-secondary) 1px;
padding-left: 10px;
}
.ES-sub-setting {
padding-left: 2em;
}
.ES-sub-setting + .ES-sub-setting {
padding-left: 0;
margin-left: 2em;
}

View File

@@ -0,0 +1,62 @@
{
"commitMessage": "vault backup: {{date}}",
"autoCommitMessage": "vault backup: {{date}}",
"commitMessageScript": "",
"commitDateFormat": "YYYY-MM-DD HH:mm:ss",
"autoSaveInterval": 5,
"autoPushInterval": 0,
"autoPullInterval": 0,
"autoPullOnBoot": true,
"autoCommitOnlyStaged": false,
"disablePush": false,
"pullBeforePush": true,
"disablePopups": true,
"showErrorNotices": true,
"disablePopupsForNoChanges": true,
"listChangedFilesInMessageBody": false,
"showStatusBar": true,
"updateSubmodules": false,
"syncMethod": "rebase",
"customMessageOnAutoBackup": false,
"autoBackupAfterFileChange": true,
"treeStructure": true,
"refreshSourceControl": true,
"basePath": "",
"differentIntervalCommitAndPush": false,
"changedFilesInStatusBar": false,
"showedMobileNotice": true,
"refreshSourceControlTimer": 7000,
"showBranchStatusBar": true,
"setLastSaveToLastCommit": false,
"submoduleRecurseCheckout": false,
"gitDir": "",
"showFileMenu": true,
"authorInHistoryView": "hide",
"dateInHistoryView": false,
"diffStyle": "split",
"lineAuthor": {
"show": false,
"followMovement": "inactive",
"authorDisplay": "initials",
"showCommitHash": false,
"dateTimeFormatOptions": "date",
"dateTimeFormatCustomString": "YYYY-MM-DD HH:mm",
"dateTimeTimezone": "viewer-local",
"coloringMaxAge": "1y",
"colorNew": {
"r": 255,
"g": 150,
"b": 150
},
"colorOld": {
"r": 120,
"g": 160,
"b": 255
},
"textColorCss": "var(--text-muted)",
"ignoreWhitespace": false,
"gutterSpacingFallbackLength": 5,
"lastShownAuthorDisplay": "initials",
"lastShownDateTimeFormatOptions": "date"
}
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,10 @@
{
"author": "Vinzent",
"authorUrl": "https://github.com/Vinzent03",
"id": "obsidian-git",
"name": "Git",
"description": "Integrate Git version control with automatic backup and other advanced features.",
"isDesktopOnly": false,
"fundingUrl": "https://ko-fi.com/vinzent",
"version": "2.35.2"
}

View File

@@ -0,0 +1,629 @@
@keyframes loading {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.workspace-leaf-content[data-type="git-view"] .button-border {
border: 2px solid var(--interactive-accent);
border-radius: var(--radius-s);
}
.workspace-leaf-content[data-type="git-view"] .view-content {
padding-left: 0;
padding-top: 0;
padding-right: 0;
}
.workspace-leaf-content[data-type="git-history-view"] .view-content {
padding-left: 0;
padding-top: 0;
padding-right: 0;
}
.loading {
overflow: hidden;
}
.loading > svg {
animation: 2s linear infinite loading;
transform-origin: 50% 50%;
display: inline-block;
}
.obsidian-git-center {
margin: auto;
text-align: center;
width: 50%;
}
.obsidian-git-textarea {
display: block;
margin-left: auto;
margin-right: auto;
}
.obsidian-git-disabled {
opacity: 0.5;
}
.obsidian-git-center-button {
display: block;
margin: 20px auto;
}
.tooltip.mod-left {
overflow-wrap: break-word;
}
.tooltip.mod-right {
overflow-wrap: break-word;
}
/* Limits the scrollbar to the view body */
.git-view {
display: flex;
flex-direction: column;
position: relative;
height: 100%;
}
.git-tools {
display: flex;
margin-left: auto;
}
.git-tools .type {
padding-left: var(--size-2-1);
display: flex;
align-items: center;
justify-content: center;
width: 11px;
}
.git-tools .type[data-type="M"] {
color: orange;
}
.git-tools .type[data-type="D"] {
color: red;
}
.git-tools .buttons {
display: flex;
}
.git-tools .buttons > * {
padding: 0 0;
height: auto;
}
.workspace-leaf-content[data-type="git-view"] .tree-item-self,
.workspace-leaf-content[data-type="git-history-view"] .tree-item-self {
align-items: center;
}
.workspace-leaf-content[data-type="git-view"]
.tree-item-self:hover
.clickable-icon,
.workspace-leaf-content[data-type="git-history-view"]
.tree-item-self:hover
.clickable-icon {
color: var(--icon-color-hover);
}
/* Highlight an item as active if it's diff is currently opened */
.is-active .git-tools .buttons > * {
color: var(--nav-item-color-active);
}
.git-author {
color: var(--text-accent);
}
.git-date {
color: var(--text-accent);
}
.git-ref {
color: var(--text-accent);
}
.workspace-leaf-content[data-type="diff-view"] .d2h-d-none {
display: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-wrapper {
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-header {
background-color: var(--background-primary);
border-bottom: 1px solid var(--interactive-accent);
font-family: var(--font-monospace);
height: 35px;
padding: 5px 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-header,
.workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
font-size: 14px;
margin-left: auto;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-lines-added {
border: 1px solid #b4e2b4;
border-radius: 5px 0 0 5px;
color: #399839;
padding: 2px;
text-align: right;
vertical-align: middle;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-lines-deleted {
border: 1px solid #e9aeae;
border-radius: 0 5px 5px 0;
color: #c33;
margin-left: 1px;
padding: 2px;
text-align: left;
vertical-align: middle;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-name-wrapper {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
font-size: 15px;
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-name {
overflow-x: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-wrapper {
border: 1px solid var(--background-modifier-border);
border-radius: 3px;
margin-bottom: 1em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse {
-webkit-box-pack: end;
-ms-flex-pack: end;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border: 1px solid var(--background-modifier-border);
border-radius: 3px;
cursor: pointer;
display: none;
font-size: 12px;
justify-content: flex-end;
padding: 4px 8px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse.d2h-selected {
background-color: #c8e1ff;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse-input {
margin: 0 4px 0 0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-diff-table {
border-collapse: collapse;
font-family: Menlo, Consolas, monospace;
font-size: 13px;
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-files-diff {
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-diff {
overflow-y: hidden;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-side-diff {
display: inline-block;
margin-bottom: -8px;
margin-right: -4px;
overflow-x: scroll;
overflow-y: hidden;
width: 50%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line {
padding: 0 8em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
display: inline-block;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
white-space: nowrap;
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
padding: 0 4.5em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-ctn {
word-wrap: normal;
background: none;
display: inline-block;
padding: 0;
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
vertical-align: middle;
white-space: pre;
width: 100%;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
.theme-light
.workspace-leaf-content[data-type="diff-view"]
.d2h-code-side-line
del {
background-color: #ffb6ba;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
.theme-dark
.workspace-leaf-content[data-type="diff-view"]
.d2h-code-side-line
del {
background-color: #8d232881;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line del,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line ins {
border-radius: 0.2em;
display: inline-block;
margin-top: -1px;
text-decoration: none;
vertical-align: middle;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
.theme-light
.workspace-leaf-content[data-type="diff-view"]
.d2h-code-side-line
ins {
background-color: #97f295;
text-align: left;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
.theme-dark
.workspace-leaf-content[data-type="diff-view"]
.d2h-code-side-line
ins {
background-color: #1d921996;
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix {
word-wrap: normal;
background: none;
display: inline;
padding: 0;
white-space: pre;
}
.workspace-leaf-content[data-type="diff-view"] .line-num1 {
float: left;
}
.workspace-leaf-content[data-type="diff-view"] .line-num1,
.workspace-leaf-content[data-type="diff-view"] .line-num2 {
-webkit-box-sizing: border-box;
box-sizing: border-box;
overflow: hidden;
padding: 0 0.5em;
text-overflow: ellipsis;
width: 3.5em;
}
.workspace-leaf-content[data-type="diff-view"] .line-num2 {
float: right;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber {
background-color: var(--background-primary);
border: solid var(--background-modifier-border);
border-width: 0 1px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
color: var(--text-muted);
cursor: pointer;
display: inline-block;
position: absolute;
text-align: right;
width: 7.5em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber:after {
content: "\200b";
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
background-color: var(--background-primary);
border: solid var(--background-modifier-border);
border-width: 0 1px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
color: var(--text-muted);
cursor: pointer;
display: inline-block;
overflow: hidden;
padding: 0 0.5em;
position: absolute;
text-align: right;
text-overflow: ellipsis;
width: 4em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-diff-tbody tr {
position: relative;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber:after {
content: "\200b";
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-emptyplaceholder,
.workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
background-color: var(--background-primary);
border-color: var(--background-modifier-border);
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber,
.workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
direction: rtl;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-del {
background-color: #fee8e9;
border-color: #e9aeae;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
background-color: #dfd;
border-color: #b4e2b4;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-del {
background-color: #521b1d83;
border-color: #691d1d73;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
background-color: rgba(30, 71, 30, 0.5);
border-color: #13501381;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-info {
background-color: var(--background-primary);
border-color: var(--background-modifier-border);
color: var(--text-normal);
}
.theme-light
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-diff
.d2h-del.d2h-change {
background-color: #fdf2d0;
}
.theme-dark
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-diff
.d2h-del.d2h-change {
background-color: #55492480;
}
.theme-light
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-diff
.d2h-ins.d2h-change {
background-color: #ded;
}
.theme-dark
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-diff
.d2h-ins.d2h-change {
background-color: rgba(37, 78, 37, 0.418);
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper {
margin-bottom: 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper a {
color: #3572b0;
text-decoration: none;
}
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-list-wrapper
a:visited {
color: #3572b0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-header {
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-title {
font-weight: 700;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-line {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list {
display: block;
list-style: none;
margin: 0;
padding: 0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list > li {
border-bottom: 1px solid var(--background-modifier-border);
margin: 0;
padding: 5px 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list > li:last-child {
border-bottom: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-switch {
cursor: pointer;
display: none;
font-size: 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-icon {
fill: currentColor;
margin-right: 10px;
vertical-align: middle;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-deleted {
color: #c33;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-added {
color: #399839;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-changed {
color: #d0b44c;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-moved {
color: #3572b0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-tag {
background-color: var(--background-primary);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
font-size: 10px;
margin-left: 5px;
padding: 0 2px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-deleted-tag {
border: 2px solid #c33;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-added-tag {
border: 1px solid #399839;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-changed-tag {
border: 1px solid #d0b44c;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-moved-tag {
border: 1px solid #3572b0;
}
/* ====================== Line Authoring Information ====================== */
.cm-gutterElement.obs-git-blame-gutter {
/* Add background color to spacing inbetween and around the gutter for better aesthetics */
border-width: 0px 2px 0.2px 2px;
border-style: solid;
border-color: var(--background-secondary);
background-color: var(--background-secondary);
}
.cm-gutterElement.obs-git-blame-gutter > div,
.line-author-settings-preview {
/* delegate text color to settings */
color: var(--obs-git-gutter-text);
font-family: monospace;
height: 100%; /* ensure, that age-based background color occupies entire parent */
text-align: right;
padding: 0px 6px 0px 6px;
white-space: pre; /* Keep spaces and do not collapse them. */
}
@media (max-width: 800px) {
/* hide git blame gutter not to superpose text */
.cm-gutterElement.obs-git-blame-gutter {
display: none;
}
}
.git-unified-diff-view,
.git-split-diff-view .cm-deletedLine .cm-changedText {
background-color: #ee443330;
}
.git-unified-diff-view,
.git-split-diff-view .cm-insertedLine .cm-changedText {
background-color: #22bb2230;
}
.git-obscure-prompt[git-is-obscured="true"] #git-show-password:after {
-webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="svg-icon lucide-eye"><path d="M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0"></path><circle cx="12" cy="12" r="3"></circle></svg>');
}
.git-obscure-prompt[git-is-obscured="false"] #git-show-password:after {
-webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="svg-icon lucide-eye-off"><path d="M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49"></path><path d="M14.084 14.158a3 3 0 0 1-4.242-4.242"></path><path d="M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143"></path><path d="m2 2 20 20"></path></svg>');
}
/* Override styling of Codemirror merge view "collapsed lines" indicator */
.git-split-diff-view .ͼ2 .cm-collapsedLines {
background: var(--interactive-normal);
border-radius: var(--radius-m);
color: var(--text-accent);
font-size: var(--font-small);
padding: var(--size-4-1) var(--size-4-1);
}
.git-split-diff-view .ͼ2 .cm-collapsedLines:hover {
background: var(--interactive-hover);
color: var(--text-accent-hover);
}

View File

@@ -0,0 +1,23 @@
{
"pluginList": [
"RAIT-09/obsidian-agent-client"
],
"pluginSubListFrozenVersion": [
{
"repo": "RAIT-09/obsidian-agent-client",
"version": "latest"
}
],
"themesList": [],
"updateAtStartup": true,
"updateThemesAtStartup": true,
"enableAfterInstall": true,
"loggingEnabled": false,
"loggingPath": "BRAT-log",
"loggingVerboseEnabled": false,
"debuggingMode": false,
"notificationsEnabled": true,
"personalAccessToken": "",
"selectLatestPluginVersionByDefault": false,
"allowIncompatiblePlugins": false
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,14 @@
{
"id": "obsidian42-brat",
"name": "BRAT",
"version": "1.3.2",
"minAppVersion": "1.7.2",
"description": "Easily install a beta version of a plugin for testing.",
"author": "TfTHacker",
"authorUrl": "https://github.com/TfTHacker/obsidian42-brat",
"helpUrl": "https://tfthacker.com/BRAT",
"isDesktopOnly": false,
"fundingUrl": {
"Visit my site": "https://tfthacker.com"
}
}

View File

@@ -0,0 +1,110 @@
.brat-modal .modal-button-container {
margin-top: 5px !important;
}
.brat-modal .disabled-setting {
opacity: 0.5;
}
.brat-modal .disabled-setting:hover {
cursor: not-allowed;
}
/* Input validation styles */
.brat-settings .valid-input,
.brat-modal .valid-repository {
border-color: var(--color-green) !important;
}
.brat-settings .invalid-input,
.brat-modal .invalid-repository {
border-color: var(--color-red) !important;
}
.brat-settings .validation-error,
.brat-modal .validation-error {
border-color: var(--color-orange) !important;
}
/* Version selector */
.brat-version-selector {
width: 100%;
max-width: 400px;
justify-content: left;
}
.brat-token-input {
min-width: 33%;
}
/* Token info container styles */
.brat-token-info {
margin-top: 8px;
font-size: 0.8em;
padding: 8px;
border-radius: 4px;
background-color: var(--background-secondary);
}
/* Token status indicators */
.brat-token-info.valid,
.brat-token-status.valid {
color: var(--color-green);
}
.brat-token-info.invalid,
.brat-token-status.invalid {
color: var(--color-red);
}
.brat-token-info.valid {
border-left: 3px solid var(--color-green);
}
.brat-token-info.invalid {
border-left: 3px solid var(--color-red);
}
/* Token details and status */
.brat-token-status {
margin-bottom: 4px;
}
.brat-token-details {
margin-top: 4px;
color: var(--text-muted);
}
/* Token warnings */
.brat-token-warning {
color: var(--color-orange);
margin-top: 4px;
}
/* Token additional info */
.brat-token-scopes,
.brat-token-rate {
color: var(--text-muted);
margin-top: 2px;
}
/* Flex break utility */
.brat-modal .break {
flex-basis: 100%;
height: 0;
}
/* Validation status */
.brat-modal .validation-status-error {
color: var(--text-error);
}
.brat-modal .validation-status {
margin-top: 0.5em;
margin-bottom: 0.5em;
font-size: 0.8em;
text-align: left;
}
.confirm-modal .ok-button {
margin-right: 10px;
margin-top: 20px;
}

View File

@@ -0,0 +1,42 @@
{
"useCache": true,
"hideExcluded": false,
"recencyBoost": "0",
"downrankedFoldersFilters": [],
"ignoreDiacritics": true,
"ignoreArabicDiacritics": false,
"indexedFileTypes": [],
"displayTitle": "",
"PDFIndexing": true,
"officeIndexing": true,
"imagesIndexing": true,
"aiImageIndexing": false,
"unsupportedFilesIndexing": "default",
"splitCamelCase": false,
"openInNewPane": false,
"vimLikeNavigationShortcut": false,
"ribbonIcon": true,
"showExcerpt": true,
"maxEmbeds": 5,
"renderLineReturnInExcerpts": true,
"showCreateButton": false,
"highlight": true,
"showPreviousQueryResults": true,
"simpleSearch": false,
"tokenizeUrls": false,
"fuzziness": "1",
"weightBasename": 10,
"weightDirectory": 7,
"weightH1": 6,
"weightH2": 5,
"weightH3": 4,
"weightUnmarkedTags": 2,
"weightCustomProperties": [],
"httpApiEnabled": false,
"httpApiPort": "51361",
"httpApiNotice": true,
"welcomeMessage": "1.21.0",
"verboseLogging": false,
"DANGER_httpHost": null,
"DANGER_forceSaveCache": false
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,14 @@
{
"id": "omnisearch",
"name": "Omnisearch",
"version": "1.27.3",
"minAppVersion": "1.7.2",
"description": "A search engine that just works",
"author": "Simon Cambier",
"authorUrl": "https://github.com/scambier/obsidian-omnisearch",
"fundingUrl": {
"Github": "https://github.com/sponsors/scambier",
"Ko-fi": "https://ko-fi.com/scambier"
},
"isDesktopOnly": false
}

View File

@@ -0,0 +1,135 @@
.omnisearch-modal {
}
.omnisearch-result {
white-space: normal;
display: flex;
flex-direction: row;
/* justify-content: space-between; */
flex-wrap: nowrap;
}
.omnisearch-result__title-container {
display: flex;
align-items: center;
justify-content: space-between;
column-gap: 5px;
flex-wrap: wrap;
}
.omnisearch-result__title {
white-space: pre-wrap;
align-items: center;
display: flex;
gap: 5px;
}
.omnisearch-result__title > span {
}
.omnisearch-result__folder-path {
font-size: 0.75rem;
align-items: center;
display: flex;
gap: 5px;
color: var(--text-muted);
}
.omnisearch-result__extension {
font-size: 0.7rem;
color: var(--text-muted);
}
.omnisearch-result__counter {
font-size: 0.7rem;
color: var(--text-muted);
}
.omnisearch-result__body {
white-space: normal;
font-size: small;
word-wrap: normal;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
color: var(--text-muted);
margin-inline-start: 0.5em;
}
.omnisearch-result__embed {
margin-left: 1em;
}
.omnisearch-result__image-container {
flex-basis: 20%;
text-align: end;
}
.omnisearch-highlight {
}
.omnisearch-default-highlight {
text-decoration: underline;
text-decoration-color: var(--text-highlight-bg);
text-decoration-thickness: 3px;
text-underline-offset: -1px;
text-decoration-skip-ink: none;
}
.omnisearch-input-container {
display: flex;
align-items: center;
flex-direction: row;
gap: 5px;
}
.omnisearch-result__icon {
display: inline-block;
vertical-align: middle;
width: 16px;
height: 16px;
margin-right: 4px;
}
.omnisearch-result__icon svg {
width: 100%;
height: 100%;
}
.omnisearch-result__icon--emoji {
font-size: 16px;
vertical-align: middle;
margin-right: 4px;
}
@media only screen and (max-width: 600px) {
.omnisearch-input-container {
flex-direction: column;
}
.omnisearch-input-container__buttons {
display: flex;
flex-direction: row;
width: 100%;
padding: 0 1em 0 1em;
gap: 1em;
}
.omnisearch-input-container__buttons > button {
flex-grow: 1;
}
}
@media only screen and (min-width: 600px) {
.omnisearch-input-container__buttons {
margin-inline-end: 1em;
}
}
.omnisearch-input-field {
position: relative;
flex-grow: 1;
}

View File

@@ -0,0 +1,124 @@
{
"hiddenProperties": [],
"propertyPillColors": {},
"propertyLongtextColors": {},
"tagColors": {
"biokemi": {
"pillColor": "green"
},
"provfråga": {
"pillColor": {
"h": 0,
"s": 85,
"l": 21
}
}
},
"enableBanner": true,
"enableIcon": true,
"enableCover": true,
"bannerProperty": "banner",
"iconProperty": "icon",
"coverProperty": "cover",
"extraCoverProperties": [],
"bannerHeight": 150,
"bannerHeightMobile": 100,
"bannerHeightPopover": 100,
"bannerMargin": -20,
"bannerMarginMobile": 0,
"bannerFading": true,
"coverDefaultWidth1": 200,
"coverDefaultWidth2": 250,
"coverDefaultWidth3": 300,
"coverMaxHeight": 500,
"coverVerticalWidth": 200,
"coverHorizontalWidth": 300,
"coverSquareWidth": 250,
"coverCircleWidth": 250,
"coverMaxWidthPopover": 150,
"progressProperties": {},
"allTasksCount": "tasks",
"completedTasksCount": "tasks_completed",
"uncompletedTasksCount": "tasks_uncompleted",
"completedTasksStatuses": [
"x"
],
"uncompletedTasksStatuses": [
" "
],
"bannersFolder": "",
"coversFolder": "",
"showColorSettings": false,
"showTextColorSettings": false,
"showHiddenSettings": false,
"iconsFolder": "",
"iconSize": 70,
"iconTopMargin": 70,
"iconTopMarginMobile": 44,
"iconTopMarginWithoutBanner": -10,
"iconLeftMargin": 0,
"iconGap": 10,
"bannerIconGap": 0,
"bannerIconGapMobile": 20,
"iconColor": "",
"iconColorDark": "",
"iconBackground": false,
"bannerPositionProperty": "banner_position",
"addPillPadding": "all",
"addBaseTagColor": true,
"enableTasksCount": true,
"enableColorButtonInBases": false,
"customDateFormat": "",
"customDateTimeFormat": "",
"enableCustomDateFormat": false,
"enableCustomDateFormatInBases": false,
"enableRelativeDateColors": false,
"settingsTab": "DATES",
"enableTaskNotesCount": false,
"allTNTasksCount": "tn_tasks",
"completedTNTasksCount": "tn_tasks_completed",
"uncompletedTNTasksCount": "tn_tasks_uncompleted",
"allTNProjectTasksCount": "tn_project_tasks",
"completedTNProjectTasksCount": "tn_project_tasks_completed",
"uncompletedTNProjectTasksCount": "tn_project_tasks_uncompleted",
"allTNInlineTasksCount": "tn_inline_tasks",
"completedTNInlineTasksCount": "tn_inline_tasks_completed",
"uncompletedTNInlineTasksCount": "tn_inline_tasks_uncompleted",
"allTNAndCheckboxTasksCount": "tn_and_checkbox_tasks",
"completedTNAndCheckboxTasksCount": "tn_and_checkbox_tasks_completed",
"uncompletedTNAndCheckboxTasksCount": "tn_and_checkbox_tasks_uncompleted",
"enableColoredProperties": true,
"enableColoredInlineTags": true,
"nonLatinTagsSupport": false,
"enableColorButton": true,
"propertySearchKey": "Ctrl",
"showTagColorSettings": true,
"iconSizeMobile": 70,
"iconSizePopover": 50,
"hidePropertiesInPropTab": false,
"autoTasksCount": true,
"enableColoredTagsInTagPane": false,
"mathProperties": [],
"enableMath": false,
"dataVersion": 1,
"dateColors": {
"past": {
"pillColor": "default",
"textColor": "default"
},
"present": {
"pillColor": "default",
"textColor": "default"
},
"future": {
"pillColor": "default",
"textColor": "default"
}
},
"coverPosition": "left",
"enableBannersInPopover": false,
"enableIconsInPopover": false,
"enableCoversInPopover": false,
"hideAllEmptyProperties": false,
"hiddenWhenEmptyProperties": []
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,10 @@
{
"id": "pretty-properties",
"name": "Pretty Properties",
"version": "1.9.2",
"minAppVersion": "1.6.7",
"description": "Makes note properties look more fun: adds side image, banners, list property colors and allows to hide specific properties.",
"author": "Anareaty",
"authorUrl": "https://github.com/anareaty",
"isDesktopOnly": false
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,53 @@
/*
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
if you want to view the source, please visit the github repository of this plugin
*/
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// main.ts
var main_exports = {};
__export(main_exports, {
default: () => SpoilerBlock
});
module.exports = __toCommonJS(main_exports);
var import_obsidian = require("obsidian");
var SpoilerBlock = class extends import_obsidian.Plugin {
async onload() {
console.log("reload");
this.registerMarkdownCodeBlockProcessor("spoiler-block", (source, el, _) => {
const container = el.createEl("div");
container.className = "spoiler";
const rows = source.split("\n");
for (let row of rows)
container.createEl("div", { text: row });
container.addEventListener("click", () => {
if (container.className === "spoiler")
container.className = "spoiler-show";
});
container.addEventListener("dblclick", () => {
if (container.className === "spoiler-show")
container.className = "spoiler";
});
});
}
};
/* nosourcemap */

View File

@@ -0,0 +1,10 @@
{
"id": "spoiler-block-obsidian",
"name": "Spoiler Block",
"version": "1.0.0",
"minAppVersion": "0.15.0",
"description": "Create Spoiler Blocks to hide information until you want to see it",
"author": "AllJavi",
"authorUrl": "https://github.com/AllJavi",
"isDesktopOnly": false
}

View File

@@ -0,0 +1,42 @@
.spoiler, .spoiler-show {
transition: all .3s;
position: relative;
color: transparent;
text-shadow: 0 0 12px var(--text-normal);
padding: .8em;
cursor: pointer;
background-color: var(--background-secondary);
border-radius: 4px;
user-select: none;
}
.spoiler-show {
text-shadow: 0 0 0 transparent !important;
color: var(--text-normal) !important;
user-select: auto !important;
cursor: auto !important;
}
.spoiler::before, .spoiler::after {
display: block;
position: absolute;
font-weight: 500;
color: var(--text-accent);
text-align: center;
text-shadow: none;
transition: all .3s;
content: 'CLICK TO SHOW';
opacity: 0;
left: 0;
right: 0;
transform: translateY(-50%);
top: 50%;
}
.spoiler:hover:before {
opacity: 1;
}
.spoiler:hover {
text-shadow: 0 0 14px var(--text-normal);
}

View File

@@ -0,0 +1,8 @@
{
"ocrLanguages": [
"eng",
"swe"
],
"rightClickMenu": true,
"useSystemOCR": true
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,14 @@
{
"id": "text-extractor",
"name": "Text Extractor",
"version": "0.6.1",
"minAppVersion": "1.4.16",
"description": "A (companion) plugin to facilitate the extraction of text from images (OCR) and PDFs.",
"author": "Simon Cambier",
"authorUrl": "https://github.com/scambier/obsidian-text-extractor",
"fundingUrl": {
"Github": "https://github.com/sponsors/scambier",
"Ko-fi": "https://ko-fi.com/scambier"
},
"isDesktopOnly": false
}

253
content/.obsidian/workspace.json vendored Normal file
View File

@@ -0,0 +1,253 @@
{
"main": {
"id": "19179b278823b064",
"type": "split",
"children": [
{
"id": "259ede969ffdbe8f",
"type": "tabs",
"dimension": 61.20527306967985,
"children": [
{
"id": "736e57209f9ec606",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "🧪 Biokemi/🏋️‍♀️ Metabolism/🧬 Nukleotidnedbrytning/🗒 Anteckningar.md",
"mode": "source",
"source": false,
"backlinks": false
},
"icon": "lucide-file",
"title": "🗒 Anteckningar"
}
}
]
},
{
"id": "a2fa10a913c757d9",
"type": "tabs",
"dimension": 38.79472693032015,
"children": [
{
"id": "1f1c72da65d4b9df",
"type": "leaf",
"state": {
"type": "pdf",
"state": {
"file": "🧪 Biokemi/🏋️‍♀️ Metabolism/🧬 Nukleotidnedbrytning/Slides.pdf.pdf"
},
"icon": "lucide-file-text",
"title": "Slides.pdf"
}
}
]
}
],
"direction": "vertical"
},
"left": {
"id": "70dc58e919eddd95",
"type": "split",
"children": [
{
"id": "47a30d427cdfb6db",
"type": "tabs",
"children": [
{
"id": "ef51d026ab2efaae",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {
"sortOrder": "customOrder",
"autoReveal": false
},
"icon": "lucide-folder-closed",
"title": "Files"
}
},
{
"id": "eafa93eb6a28e671",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "tag:#pentosfosfatvägen",
"matchingCase": true,
"explainSearch": false,
"collapseAll": false,
"extraContext": true,
"sortOrder": "alphabetical"
},
"icon": "lucide-search",
"title": "Search"
}
}
]
}
],
"direction": "horizontal",
"width": 235.50390243530273,
"collapsed": true
},
"right": {
"id": "0948c66181b40af9",
"type": "split",
"children": [
{
"id": "8e42749b81d80f27",
"type": "tabs",
"children": [
{
"id": "131da419ce467615",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"file": "Biokemi/Metabolism/Heme/Provfrågor.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-going-out",
"title": "Outgoing links from Provfrågor"
}
},
{
"id": "5c1804c056cc2e31",
"type": "leaf",
"state": {
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": false,
"showSearch": true,
"searchQuery": ""
},
"icon": "lucide-tags",
"title": "Tags"
}
},
{
"id": "d4a03ebd29e7b96c",
"type": "leaf",
"state": {
"type": "outline",
"state": {
"file": "Biokemi/Cellulära processer/Translation/Stoff.md",
"followCursor": false,
"showSearch": false,
"searchQuery": ""
},
"icon": "lucide-list",
"title": "Outline of Stoff"
}
},
{
"id": "a23e068aac24f909",
"type": "leaf",
"state": {
"type": "all-properties",
"state": {
"sortOrder": "frequency",
"showSearch": false,
"searchQuery": ""
},
"icon": "lucide-archive",
"title": "All properties"
}
},
{
"id": "41f1a2a8dc1c3ad7",
"type": "leaf",
"state": {
"type": "git-view",
"state": {},
"icon": "git-pull-request",
"title": "Source Control"
}
},
{
"id": "f3646b47b9e138cd",
"type": "leaf",
"state": {
"type": "agent-client-chat-view",
"state": {},
"icon": "bot-message-square",
"title": "Agent client"
}
}
],
"currentTab": 4
}
],
"direction": "horizontal",
"width": 302.5
},
"left-ribbon": {
"hiddenItems": {
"switcher:Open quick switcher": false,
"command-palette:Open command palette": false,
"obsidian-git:Open Git source control": false,
"omnisearch:Omnisearch": false,
"bases:Create new base": false,
"canvas:Create new canvas": false,
"obsidian42-brat:BRAT": false,
"agent-client:Open agent client": false,
"graph:Open graph view": false,
"workspaces:Manage workspace layouts": false,
"templates:Insert template": false
}
},
"active": "736e57209f9ec606",
"lastOpenFiles": [
"🧪 Biokemi/🏋️‍♀️ Metabolism/🧬 Nukleotidnedbrytning/Slides.pdf.pdf",
"🧪 Biokemi/🏋️‍♀️ Metabolism/🧬 Nukleotidnedbrytning/❓ Provfrågor.md",
"🧪 Biokemi/🏋️‍♀️ Metabolism/🧬 Nukleotidnedbrytning/📚 Instuderingsuppgifter.md",
"🧪 Biokemi/🏋️‍♀️ Metabolism/🧬 Nukleotidnedbrytning/👨🏻‍🏫 Slides.md",
"🧪 Biokemi/🏋️‍♀️ Metabolism/🧬 Nukleotidnedbrytning/🗒 Anteckningar.md",
"attachments/Pasted image 20251209111439.png",
"🧪 Biokemi/🏋️‍♀️ Metabolism/🧬 Nukleotidnedbrytning/Unconfirmed 634084.crdownload",
"🧪 Biokemi/🏋️‍♀️ Metabolism/⚒ Pentosfosfatvägen/🗒 Anteckningar.md",
"🧪 Biokemi/🏋️‍♀️ Metabolism/⚒ Pentosfosfatvägen/Slides.pdf.pdf",
"🧪 Biokemi/🏋️‍♀️ Metabolism/⚒ Pentosfosfatvägen/❓ Provfrågor.md",
"attachments/Pasted image 20251209104203.png",
"🧪 Biokemi/🏋️‍♀️ Metabolism/⚒ Pentosfosfatvägen/📚 Instuderingsuppgifter.md",
"🧪 Biokemi/📝 Gamla tentor/2022-12-19/32.md",
"🧪 Biokemi/📝 Gamla tentor/2022-01-29/28.md",
"🧪 Biokemi/📝 Gamla tentor/2022-05-16/29.md",
"🧪 Biokemi/📝 Gamla tentor/2021-12-16/29.md",
"🧪 Biokemi/📝 Gamla tentor/2025-02-01/32.md",
"🧪 Biokemi/📝 Gamla tentor/2024-08-01/32.md",
"🧪 Biokemi/📝 Gamla tentor/2024-05-15/32.md",
"🧪 Biokemi/📝 Gamla tentor/2024-12-20/33.md",
"🧪 Biokemi/📝 Gamla tentor/2024-01-27/33.md",
"🧪 Biokemi/📝 Gamla tentor/2023-12-18/33.md",
"🧪 Biokemi/🏋️‍♀️ Metabolism/⚒ Pentosfosfatvägen/🎯 Lärandemål.md",
"🧪 Biokemi/🏋️‍♀️ Metabolism/⚒ Pentosfosfatvägen/👨🏻‍🏫 Slides.md",
"🧪 Biokemi/🏋️‍♀️ Metabolism/⚒ Pentosfosfatvägen/Unconfirmed 82291.crdownload",
"🧪 Biokemi/🏋️‍♀️ Metabolism/🍟 Kolesterolsyntes/📚 Instuderingsuppgifter.md",
"🧪 Biokemi/🏋️‍♀️ Metabolism/🍟 Kolesterolsyntes/🎯 Lärandemål.md",
"🧪 Biokemi/📝 Gamla tentor/2024-01-27/34.md",
"🧪 Biokemi/📝 Gamla tentor/2024-05-15/34.md",
"🧪 Biokemi/📝 Gamla tentor/2024-12-20/34.md",
"🧪 Biokemi/📝 Gamla tentor/2022-12-19/33.md",
"Templates/{{Föreläsning}}",
"Templates",
"🧪 Biokemi/🏋️‍♀️ Metabolism/⚒ Pentosfosfatvägen",
"🧪 Biokemi/🏋️‍♀️ Metabolism/🧬 Nukleotidnedbrytning",
"🧪 Biokemi/🏋️‍♀️ Metabolism/Nukleotid",
"🧪 Biokemi/🏋️‍♀️ Metabolism/⛓️ Elektrontransportkedjan/👩‍🏫 Slides.pdf.pdf",
"attachments/Pasted image 20251203133759.png",
"attachments/Pasted image 20251203134701.png",
"attachments/Pasted image 20251203142252.png",
"attachments/Pasted image 20251205132645.png",
"attachments/Pasted image 20251009194941.png",
"attachments/Pasted image 20251009191835.png",
"attachments/Pasted image 20251009185731.png",
"attachments/Pasted image 20251009083506.png",
"🧪 Biokemi/🏋️‍♀️ Metabolism/📋 Metabolismen översikt.canvas",
"🧪 Biokemi/🏋️‍♀️ Metabolism/👋 Introduktion till metabolismen/Untitled.canvas"
]
}