update
This commit is contained in:
BIN
.obsidian.mobile/.DS_Store
vendored
Normal file
BIN
.obsidian.mobile/.DS_Store
vendored
Normal file
Binary file not shown.
@@ -1 +1,22 @@
|
||||
{}
|
||||
{
|
||||
"mobileToolbarCommands": [
|
||||
"editor:undo",
|
||||
"editor:redo",
|
||||
"editor:move-caret-left",
|
||||
"editor:move-caret-down",
|
||||
"editor:move-caret-up",
|
||||
"editor:move-caret-right",
|
||||
"editor:swap-line-up",
|
||||
"editor:swap-line-down",
|
||||
"editor:insert-wikilink",
|
||||
"editor:toggle-bold",
|
||||
"editor:toggle-italics",
|
||||
"editor:toggle-strikethrough",
|
||||
"editor:toggle-checklist-status",
|
||||
"editor:indent-list",
|
||||
"editor:unindent-list",
|
||||
"editor:paste",
|
||||
"editor:context-menu",
|
||||
"editor:configure-toolbar"
|
||||
]
|
||||
}
|
@@ -1,3 +1,8 @@
|
||||
{
|
||||
"accentColor": ""
|
||||
"accentColor": "",
|
||||
"cssTheme": "Minimal",
|
||||
"enabledCssSnippets": [
|
||||
"custom_callouts",
|
||||
"embeds"
|
||||
]
|
||||
}
|
8
.obsidian.mobile/community-plugins.json
Normal file
8
.obsidian.mobile/community-plugins.json
Normal file
@@ -0,0 +1,8 @@
|
||||
[
|
||||
"dataview",
|
||||
"breadcrumbs",
|
||||
"calendar",
|
||||
"obsidian-tasks-plugin",
|
||||
"obsidian-minimal-settings",
|
||||
"obsidian-style-settings"
|
||||
]
|
5
.obsidian.mobile/daily-notes.json
Normal file
5
.obsidian.mobile/daily-notes.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"template": "templates/daily note",
|
||||
"folder": "daily",
|
||||
"autorun": true
|
||||
}
|
@@ -17,6 +17,6 @@
|
||||
"repelStrength": 10,
|
||||
"linkStrength": 1,
|
||||
"linkDistance": 250,
|
||||
"scale": 0.046539988554720094,
|
||||
"scale": 0.11000788175913212,
|
||||
"close": false
|
||||
}
|
35880
.obsidian.mobile/plugins/breadcrumbs/main.js
Normal file
35880
.obsidian.mobile/plugins/breadcrumbs/main.js
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian.mobile/plugins/breadcrumbs/manifest.json
Normal file
10
.obsidian.mobile/plugins/breadcrumbs/manifest.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "breadcrumbs",
|
||||
"name": "Breadcrumbs",
|
||||
"version": "3.6.11",
|
||||
"minAppVersion": "0.15.2",
|
||||
"description": "Visualise & navigate your vault's structure",
|
||||
"author": "SkepticMystic",
|
||||
"authorUrl": "https://github.com/SkepticMystic/breadcrumbs",
|
||||
"isDesktopOnly": false
|
||||
}
|
113
.obsidian.mobile/plugins/breadcrumbs/styles.css
Normal file
113
.obsidian.mobile/plugins/breadcrumbs/styles.css
Normal file
@@ -0,0 +1,113 @@
|
||||
.BC-trail {
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: 5px;
|
||||
padding: 5px;
|
||||
margin-bottom: 5px !important;
|
||||
}
|
||||
|
||||
/* completely hides the trail when "no path found message" is left empty and no path is found */
|
||||
.BC-trail:empty {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.BC-matrix-square li {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
/* ensure empty headers not leaving an element */
|
||||
.BC-Matrix .BC-Matrix-square .BC-Matrix-header:empty {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.internal-link.BC-Link {
|
||||
color: var(--text-accent);
|
||||
}
|
||||
|
||||
.internal-link.BC-Link:hover {
|
||||
color: var(--text-accent-hover, var(--text-accent));
|
||||
}
|
||||
|
||||
.vis-view-options > * {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
/* Source: https://svelte.dev/repl/3153faf7584d40bd8ddebecf39f24ac1?version=3.41.0 */
|
||||
[data-tooltip] {
|
||||
position: relative;
|
||||
/* z-index: 2; */
|
||||
/* display: block; */
|
||||
}
|
||||
|
||||
[data-tooltip]:before,
|
||||
[data-tooltip]:after {
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
transition: 0.2s ease-out;
|
||||
transform: translate(-50%, 5px);
|
||||
}
|
||||
|
||||
[data-tooltip]:before {
|
||||
position: absolute;
|
||||
top: 80%;
|
||||
/* bottom: 100%; */
|
||||
left: 50%;
|
||||
margin-bottom: 5px;
|
||||
padding: 7px;
|
||||
width: fit-content;
|
||||
height: fit-content;
|
||||
min-width: 200px;
|
||||
min-height: 200px;
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
background-color: var(--background-primary);
|
||||
color: var(--text-normal);
|
||||
content: attr(data-tooltip);
|
||||
text-align: center;
|
||||
font-size: var(--font-medium);
|
||||
line-height: 1.2;
|
||||
transition: 0.2s ease-out;
|
||||
white-space: pre-line;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
/* [data-tooltip]:after {
|
||||
position: absolute;
|
||||
top: 80%;
|
||||
left: 50%;
|
||||
width: 0;
|
||||
border-top: 5px solid #000;
|
||||
border-top: 5px solid hsla(0, 0%, 20%, 0.9);
|
||||
border-right: 5px solid transparent;
|
||||
border-left: 5px solid transparent;
|
||||
background-color: red;
|
||||
content: " ";
|
||||
font-size: 0;
|
||||
line-height: 0;
|
||||
} */
|
||||
|
||||
[data-tooltip]:hover:before,
|
||||
[data-tooltip]:hover:after {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
transform: translate(-50%, 0);
|
||||
}
|
||||
[data-tooltip="false"]:hover:before,
|
||||
[data-tooltip="false"]:hover:after {
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.thread-dir-templates .setting-item-control {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.juggl-hide {
|
||||
display: none;
|
||||
}
|
||||
|
||||
[data-type="BC-matrix"] div.view-content {
|
||||
overflow: hidden !important;
|
||||
}
|
10
.obsidian.mobile/plugins/calendar/data.json
Normal file
10
.obsidian.mobile/plugins/calendar/data.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"shouldConfirmBeforeCreate": true,
|
||||
"weekStart": "locale",
|
||||
"wordsPerDot": 250,
|
||||
"showWeeklyNote": false,
|
||||
"weeklyNoteFormat": "",
|
||||
"weeklyNoteTemplate": "",
|
||||
"weeklyNoteFolder": "",
|
||||
"localeOverride": "system-default"
|
||||
}
|
4457
.obsidian.mobile/plugins/calendar/main.js
Normal file
4457
.obsidian.mobile/plugins/calendar/main.js
Normal file
File diff suppressed because it is too large
Load Diff
10
.obsidian.mobile/plugins/calendar/manifest.json
Normal file
10
.obsidian.mobile/plugins/calendar/manifest.json
Normal 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"
|
||||
}
|
20723
.obsidian.mobile/plugins/dataview/main.js
Normal file
20723
.obsidian.mobile/plugins/dataview/main.js
Normal file
File diff suppressed because one or more lines are too long
11
.obsidian.mobile/plugins/dataview/manifest.json
Normal file
11
.obsidian.mobile/plugins/dataview/manifest.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "dataview",
|
||||
"name": "Dataview",
|
||||
"version": "0.5.67",
|
||||
"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
|
||||
}
|
146
.obsidian.mobile/plugins/dataview/styles.css
Normal file
146
.obsidian.mobile/plugins/dataview/styles.css
Normal file
@@ -0,0 +1,146 @@
|
||||
/** Live Preview padding fixes, specifically for DataviewJS custom HTML elements. */
|
||||
.is-live-preview .block-language-dataviewjs > p, .is-live-preview .block-language-dataviewjs > span {
|
||||
line-height: 1.0;
|
||||
}
|
||||
|
||||
.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(--text-nav-selected);
|
||||
}
|
||||
|
||||
.dataview.inline-field-value {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--text-nav-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(--text-nav-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: ")";
|
||||
}
|
34
.obsidian.mobile/plugins/obsidian-minimal-settings/data.json
Normal file
34
.obsidian.mobile/plugins/obsidian-minimal-settings/data.json
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"lightStyle": "minimal-light",
|
||||
"darkStyle": "minimal-dark",
|
||||
"lightScheme": "minimal-default-light",
|
||||
"darkScheme": "minimal-default-dark",
|
||||
"editorFont": "",
|
||||
"lineHeight": 1.5,
|
||||
"lineWidth": 40,
|
||||
"lineWidthWide": 50,
|
||||
"maxWidth": 88,
|
||||
"textNormal": 16,
|
||||
"textSmall": 13,
|
||||
"imgGrid": false,
|
||||
"imgWidth": "img-default-width",
|
||||
"tableWidth": "table-default-width",
|
||||
"iframeWidth": "iframe-default-width",
|
||||
"mapWidth": "map-default-width",
|
||||
"chartWidth": "chart-default-width",
|
||||
"colorfulHeadings": false,
|
||||
"colorfulFrame": false,
|
||||
"colorfulActiveStates": false,
|
||||
"trimNames": true,
|
||||
"labeledNav": false,
|
||||
"fullWidthMedia": true,
|
||||
"bordersToggle": true,
|
||||
"minimalStatus": true,
|
||||
"focusMode": false,
|
||||
"underlineInternal": true,
|
||||
"underlineExternal": true,
|
||||
"folding": true,
|
||||
"lineNumbers": false,
|
||||
"readableLineLength": true,
|
||||
"devBlockWidth": false
|
||||
}
|
File diff suppressed because one or more lines are too long
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "obsidian-minimal-settings",
|
||||
"name": "Minimal Theme Settings",
|
||||
"version": "8.1.1",
|
||||
"minAppVersion": "1.1.9",
|
||||
"description": "Change the colors, fonts and features of Minimal Theme.",
|
||||
"author": "@kepano",
|
||||
"authorUrl": "https://www.twitter.com/kepano",
|
||||
"fundingUrl": "https://www.buymeacoffee.com/kepano",
|
||||
"isDesktopOnly": false
|
||||
}
|
78
.obsidian.mobile/plugins/obsidian-style-settings/data.json
Normal file
78
.obsidian.mobile/plugins/obsidian-style-settings/data.json
Normal file
@@ -0,0 +1,78 @@
|
||||
{
|
||||
"minimal-style@@h2-weight": 600,
|
||||
"minimal-style@@h3-weight": 600,
|
||||
"minimal-style@@h4-weight": 600,
|
||||
"minimal-style@@h5-weight": 600,
|
||||
"minimal-style@@h6-weight": 600,
|
||||
"minimal-cards-style@@cards-min-width": "400px",
|
||||
"customizable-page-header-buttons@@page-header-spacing-desktop": 6,
|
||||
"minimal-advanced@@cursor": "default",
|
||||
"minimal-style@@checkbox-shape": "checkbox-square",
|
||||
"quick-explorer@@qe-hide-breadcrumbs": false,
|
||||
"minimal-style@@h1-color@@light": "#2967B3",
|
||||
"minimal-style@@bold-color@@light": "#000000",
|
||||
"minimal-style@@bold-color@@dark": "#EEEEEE",
|
||||
"supercharged-links@@591a-86c0-color": "#658CAD",
|
||||
"supercharged-links@@591a-86c0-weight": "normal",
|
||||
"supercharged-links@@591a-86c0-before": "👤",
|
||||
"minimal-advanced@@styled-scrollbars": false,
|
||||
"minimal-style@@h1-color@@dark": "#2967B3",
|
||||
"minimal-style@@h2-color@@dark": "#C9893A",
|
||||
"minimal-style@@h1-style": "normal",
|
||||
"minimal-style@@h1-l": false,
|
||||
"minimal-style@@h3-color@@dark": "#9E72AF",
|
||||
"minimal-style@@h4-color@@dark": "#62A563",
|
||||
"minimal-style@@h5-color@@dark": "#DB5454",
|
||||
"minimal-style@@h5-variant": "normal",
|
||||
"minimal-style@@h3-size": "1.15em",
|
||||
"minimal-style@@h4-variant": "normal",
|
||||
"minimal-style@@h4-size": "1em",
|
||||
"minimal-style@@h1-size": "1.4em",
|
||||
"minimal-style@@h1-weight": 900,
|
||||
"minimal-style@@h2-size": "1.3em",
|
||||
"minimal-style@@h5-size": "0.9em",
|
||||
"minimal-style@@h6-variant": "normal",
|
||||
"minimal-style@@h6-size": "0.85em",
|
||||
"minimal-style@@h6-color@@dark": "#2798A2",
|
||||
"minimal-style@@h6-l": false,
|
||||
"minimal-style@@icon-muted": 0.5,
|
||||
"supercharged-links@@7812-52e6-before": "📅 ",
|
||||
"customizable-page-header-buttons@@page-header-spacing-mobile": 12,
|
||||
"minimal-style@@trim-cols": false,
|
||||
"minimal-style@@max-col-width": "50em",
|
||||
"minimal-style@@code-background@@dark": "#1E1E1E",
|
||||
"minimal-style@@window-title-off": false,
|
||||
"minimal-style@@code-normal@@dark": "#BCBCBC",
|
||||
"minimal-style@@image-muted": 0.7,
|
||||
"minimal-style@@zoom-off": false,
|
||||
"minimal-style@@col-alt": false,
|
||||
"supercharged-links@@f1e2-3136-color": "#008A88",
|
||||
"supercharged-links@@591a-86c0-decoration": "initial",
|
||||
"pane-relief@@pane-relief-pane-numbering": false,
|
||||
"pane-relief@@pane-relief-disable-counts": false,
|
||||
"minimal-style@@active-line-on": true,
|
||||
"supercharged-links@@89ca-499e-color": "#008A88",
|
||||
"supercharged-links@@4694-3e42-color": "#E16914",
|
||||
"supercharged-links@@8606-2a08-color": "#2A9E00",
|
||||
"supercharged-links@@7812-52e6-color": "#A55F5F",
|
||||
"supercharged-links@@7812-52e6-decoration": "initial",
|
||||
"supercharged-links@@ef64-500f-color": "#825AE1",
|
||||
"supercharged-links@@c309-a78f-color": "#825AE1",
|
||||
"minimal-style@@embed-strict": true,
|
||||
"list-callouts@@lc-bg-left": 35,
|
||||
"list-callouts@@lc-bg-opacity-light": 0.1,
|
||||
"list-callouts@@lc-bg-left-checkbox": 60,
|
||||
"list-callouts@@lc-bg-left-checkbox-lp": 43,
|
||||
"list-callouts@@lc-bg-opacity-dark": 0.1,
|
||||
"pane-relief@@pr-sliding-panes-desktop-width": "1100px",
|
||||
"minimal-style@@h2-color@@light": "#C9893A",
|
||||
"minimal-style@@h3-color@@light": "#9E72AF",
|
||||
"minimal-style@@h4-color@@light": "#62A563",
|
||||
"minimal-style@@h5-color@@light": "#DB5454",
|
||||
"minimal-style@@h6-color@@light": "#2798A2",
|
||||
"minimal-style@@file-header-visibility": "minimal-tab-title-visible",
|
||||
"minimal-style@@inline-title-color@@light": "#1E780A",
|
||||
"minimal-style@@inline-title-weight": 600,
|
||||
"minimal-style@@inline-title-color@@dark": "#1E780A",
|
||||
"minimal-style@@h1-variant": "normal"
|
||||
}
|
163
.obsidian.mobile/plugins/obsidian-style-settings/main.js
Normal file
163
.obsidian.mobile/plugins/obsidian-style-settings/main.js
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-style-settings",
|
||||
"name": "Style Settings",
|
||||
"version": "1.0.9",
|
||||
"minAppVersion": "0.11.5",
|
||||
"description": "Offers controls for adjusting theme, plugin, and snippet CSS variables.",
|
||||
"author": "mgmeyers",
|
||||
"authorUrl": "https://github.com/mgmeyers/obsidian-style-settings",
|
||||
"isDesktopOnly": false
|
||||
}
|
243
.obsidian.mobile/plugins/obsidian-style-settings/styles.css
Normal file
243
.obsidian.mobile/plugins/obsidian-style-settings/styles.css
Normal file
File diff suppressed because one or more lines are too long
229
.obsidian.mobile/plugins/obsidian-tasks-plugin/data.json
Normal file
229
.obsidian.mobile/plugins/obsidian-tasks-plugin/data.json
Normal file
@@ -0,0 +1,229 @@
|
||||
{
|
||||
"globalQuery": "",
|
||||
"globalFilter": "#task",
|
||||
"removeGlobalFilter": true,
|
||||
"taskFormat": "tasksPluginEmoji",
|
||||
"setCreatedDate": false,
|
||||
"setDoneDate": true,
|
||||
"setCancelledDate": true,
|
||||
"autoSuggestInEditor": true,
|
||||
"autoSuggestMinMatch": 0,
|
||||
"autoSuggestMaxItems": 20,
|
||||
"provideAccessKeys": true,
|
||||
"useFilenameAsScheduledDate": true,
|
||||
"filenameAsScheduledDateFormat": "",
|
||||
"filenameAsDateFolders": [],
|
||||
"recurrenceOnNextLine": false,
|
||||
"statusSettings": {
|
||||
"coreStatuses": [
|
||||
{
|
||||
"symbol": " ",
|
||||
"name": "Todo",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": true,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "x",
|
||||
"name": "Done",
|
||||
"nextStatusSymbol": " ",
|
||||
"availableAsCommand": true,
|
||||
"type": "DONE"
|
||||
}
|
||||
],
|
||||
"customStatuses": [
|
||||
{
|
||||
"symbol": "/",
|
||||
"name": "In Progress",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": true,
|
||||
"type": "IN_PROGRESS"
|
||||
},
|
||||
{
|
||||
"symbol": "-",
|
||||
"name": "Cancelled",
|
||||
"nextStatusSymbol": " ",
|
||||
"availableAsCommand": true,
|
||||
"type": "CANCELLED"
|
||||
},
|
||||
{
|
||||
"symbol": " ",
|
||||
"name": "to-do",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "/",
|
||||
"name": "incomplete",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "IN_PROGRESS"
|
||||
},
|
||||
{
|
||||
"symbol": "x",
|
||||
"name": "done",
|
||||
"nextStatusSymbol": " ",
|
||||
"availableAsCommand": false,
|
||||
"type": "DONE"
|
||||
},
|
||||
{
|
||||
"symbol": "-",
|
||||
"name": "canceled",
|
||||
"nextStatusSymbol": " ",
|
||||
"availableAsCommand": false,
|
||||
"type": "CANCELLED"
|
||||
},
|
||||
{
|
||||
"symbol": ">",
|
||||
"name": "forwarded",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "<",
|
||||
"name": "scheduling",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "?",
|
||||
"name": "question",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "!",
|
||||
"name": "important",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "*",
|
||||
"name": "star",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "\"",
|
||||
"name": "quote",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "l",
|
||||
"name": "location",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "b",
|
||||
"name": "bookmark",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "i",
|
||||
"name": "information",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "S",
|
||||
"name": "savings",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "I",
|
||||
"name": "idea",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "p",
|
||||
"name": "pros",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "c",
|
||||
"name": "cons",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "f",
|
||||
"name": "fire",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "k",
|
||||
"name": "key",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "w",
|
||||
"name": "win",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "u",
|
||||
"name": "up",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "d",
|
||||
"name": "down",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
}
|
||||
]
|
||||
},
|
||||
"features": {
|
||||
"INTERNAL_TESTING_ENABLED_BY_DEFAULT": true
|
||||
},
|
||||
"generalSettings": {},
|
||||
"headingOpened": {
|
||||
"Core Statuses": true,
|
||||
"Custom Statuses": true
|
||||
},
|
||||
"debugSettings": {
|
||||
"ignoreSortInstructions": false,
|
||||
"showTaskHiddenData": false,
|
||||
"recordTimings": false
|
||||
},
|
||||
"loggingOptions": {
|
||||
"minLevels": {
|
||||
"": "info",
|
||||
"tasks": "info",
|
||||
"tasks.Cache": "info",
|
||||
"tasks.Events": "info",
|
||||
"tasks.File": "info",
|
||||
"tasks.Query": "info",
|
||||
"tasks.Task": "info"
|
||||
}
|
||||
}
|
||||
}
|
407
.obsidian.mobile/plugins/obsidian-tasks-plugin/main.js
Normal file
407
.obsidian.mobile/plugins/obsidian-tasks-plugin/main.js
Normal file
File diff suppressed because one or more lines are too long
12
.obsidian.mobile/plugins/obsidian-tasks-plugin/manifest.json
Normal file
12
.obsidian.mobile/plugins/obsidian-tasks-plugin/manifest.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"id": "obsidian-tasks-plugin",
|
||||
"name": "Tasks",
|
||||
"version": "7.10.2",
|
||||
"minAppVersion": "1.1.1",
|
||||
"description": "Track tasks across your vault. Supports due dates, recurring tasks, done dates, sub-set of checklist items, and filtering.",
|
||||
"helpUrl": "https://publish.obsidian.md/tasks/",
|
||||
"author": "Clare Macrae and Ilyas Landikov (created by Martin Schenck)",
|
||||
"authorUrl": "https://github.com/obsidian-tasks-group",
|
||||
"fundingUrl": "https://github.com/sponsors/claremacrae",
|
||||
"isDesktopOnly": false
|
||||
}
|
File diff suppressed because one or more lines are too long
BIN
.obsidian.mobile/snippets/.DS_Store
vendored
Normal file
BIN
.obsidian.mobile/snippets/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
.obsidian.mobile/snippets/custom_callouts.css
Normal file
BIN
.obsidian.mobile/snippets/custom_callouts.css
Normal file
Binary file not shown.
BIN
.obsidian.mobile/snippets/embeds.css
Normal file
BIN
.obsidian.mobile/snippets/embeds.css
Normal file
Binary file not shown.
8
.obsidian.mobile/themes/Minimal/manifest.json
Normal file
8
.obsidian.mobile/themes/Minimal/manifest.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Minimal",
|
||||
"version": "7.7.18",
|
||||
"minAppVersion": "1.6.1",
|
||||
"author": "@kepano",
|
||||
"authorUrl": "https://twitter.com/kepano",
|
||||
"fundingUrl": "https://www.buymeacoffee.com/kepano"
|
||||
}
|
2224
.obsidian.mobile/themes/Minimal/theme.css
Normal file
2224
.obsidian.mobile/themes/Minimal/theme.css
Normal file
File diff suppressed because one or more lines are too long
@@ -16,15 +16,43 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "ce2150ca175684cc",
|
||||
"id": "cd624dc9bde07078",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "empty",
|
||||
"state": {}
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "daily/2024-09-25.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "70a42a2763a73ef0",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "Tasks Plugin - Review and check your Statuses 2024-09-25 15-58-59.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "09f41d6f3314d0b7",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "daily/2024-09-25.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 1
|
||||
"currentTab": 3
|
||||
}
|
||||
],
|
||||
"direction": "vertical"
|
||||
@@ -90,10 +118,11 @@
|
||||
"state": {
|
||||
"type": "backlink",
|
||||
"state": {
|
||||
"file": "daily/2024-09-25.md",
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical",
|
||||
"showSearch": false,
|
||||
"showSearch": true,
|
||||
"searchQuery": "",
|
||||
"backlinkCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
@@ -106,6 +135,7 @@
|
||||
"state": {
|
||||
"type": "outgoing-link",
|
||||
"state": {
|
||||
"file": "daily/2024-09-25.md",
|
||||
"linksCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
}
|
||||
@@ -116,6 +146,32 @@
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "outline",
|
||||
"state": {
|
||||
"file": "daily/2024-09-25.md"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "fc061ef3eb1a7b60",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "calendar",
|
||||
"state": {}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "e28be47da20d0874",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "BC-matrix",
|
||||
"state": {}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "ab5d65516838132b",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "BC-tree",
|
||||
"state": {}
|
||||
}
|
||||
}
|
||||
@@ -129,11 +185,19 @@
|
||||
"canvas:Create new canvas": false,
|
||||
"daily-notes:Open today's daily note": false,
|
||||
"templates:Insert template": false,
|
||||
"command-palette:Open command palette": false
|
||||
"command-palette:Open command palette": false,
|
||||
"breadcrumbs:Breadcrumbs Visualisation": false
|
||||
}
|
||||
},
|
||||
"active": "ce2150ca175684cc",
|
||||
"active": "09f41d6f3314d0b7",
|
||||
"lastOpenFiles": [
|
||||
"snippets alias",
|
||||
"Tasks Plugin - Review and check your Statuses 2024-09-25 15-59-01.md",
|
||||
"groupe diédral d'ordre 4.md",
|
||||
"Tasks Plugin - Review and check your Statuses 2024-09-25 15-58-59.md",
|
||||
"daily/2024-09-25.md",
|
||||
"Tasks Plugin - Review and check your Statuses 2024-09-25 15-57-59.md",
|
||||
"2024-09-25.md",
|
||||
"obsidian workflow cours.md",
|
||||
"espace vectoriel engendré par une famille de vecteurs.md",
|
||||
"matrice d'une forme quadratique.md",
|
||||
|
2
.obsidian/app.json
vendored
2
.obsidian/app.json
vendored
@@ -12,7 +12,7 @@
|
||||
"pageSize": "A4",
|
||||
"landscape": false,
|
||||
"margin": "0",
|
||||
"downscalePercent": 65
|
||||
"downscalePercent": 48
|
||||
},
|
||||
"defaultViewMode": "source",
|
||||
"autoPairMarkdown": false,
|
||||
|
7
.obsidian/appearance.json
vendored
7
.obsidian/appearance.json
vendored
@@ -1,14 +1,13 @@
|
||||
{
|
||||
"theme": "system",
|
||||
"cssTheme": "Minimal",
|
||||
"baseFontSize": 25.5,
|
||||
"baseFontSize": 31.5,
|
||||
"enabledCssSnippets": [
|
||||
"pdf_darkmode",
|
||||
"query_header_title",
|
||||
"tasks",
|
||||
"tabs",
|
||||
"hide_excalibrain_ui",
|
||||
"supercharged-links-gen",
|
||||
"tabs_on_multiple_rown",
|
||||
"popup_preview_size",
|
||||
"checkboxes",
|
||||
@@ -17,8 +16,10 @@
|
||||
"darkmode",
|
||||
"dataview",
|
||||
"general_interface",
|
||||
"breadcrumbs",
|
||||
"tabs_on_multiple_rows",
|
||||
"embeds",
|
||||
"breadcrumbs"
|
||||
"latex_mathjax"
|
||||
],
|
||||
"interfaceFontFamily": "CMU Bright,CMU Sans Serif,FiraCode Nerd Font",
|
||||
"textFontFamily": "CMU Sans Serif,FiraCode Nerd Font,CMU Serif",
|
||||
|
29
.obsidian/bookmarks.json
vendored
Normal file
29
.obsidian/bookmarks.json
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"items": [
|
||||
{
|
||||
"type": "group",
|
||||
"ctime": 1727273794463,
|
||||
"items": [
|
||||
{
|
||||
"type": "file",
|
||||
"ctime": 1727273810488,
|
||||
"path": "cours L3.topologie.md",
|
||||
"title": "topologie"
|
||||
},
|
||||
{
|
||||
"type": "file",
|
||||
"ctime": 1727273840123,
|
||||
"path": "cours L3.algèbre.md",
|
||||
"title": "agèbre"
|
||||
},
|
||||
{
|
||||
"type": "file",
|
||||
"ctime": 1727273876850,
|
||||
"path": "cours L3.intégration.md",
|
||||
"title": "intégration"
|
||||
}
|
||||
],
|
||||
"title": "cours L3"
|
||||
}
|
||||
]
|
||||
}
|
12
.obsidian/community-plugins.json
vendored
12
.obsidian/community-plugins.json
vendored
@@ -1,8 +1,6 @@
|
||||
[
|
||||
"calendar",
|
||||
"obsidian-completr",
|
||||
"obsidian-contextual-typography",
|
||||
"customizable-page-header-buttons",
|
||||
"dataview",
|
||||
"obsidian-excalidraw-plugin",
|
||||
"obsidian-latex",
|
||||
@@ -25,7 +23,6 @@
|
||||
"templater-obsidian",
|
||||
"text-snippets-obsidian",
|
||||
"txt-as-md-obsidian",
|
||||
"various-complements",
|
||||
"obsidian-style-settings",
|
||||
"quick-preview",
|
||||
"obsidian-plugin-toc",
|
||||
@@ -35,11 +32,16 @@
|
||||
"restore-tab-key",
|
||||
"obsidian-list-callouts",
|
||||
"obsidian-vimrc-support",
|
||||
"obsidian42-brat",
|
||||
"breadcrumbs",
|
||||
"zotlit",
|
||||
"number-headings-obsidian",
|
||||
"obsidian-hider",
|
||||
"obsidian-markmind",
|
||||
"obsidian-card-view-mode"
|
||||
"obsidian42-brat",
|
||||
"customizable-page-header-buttons",
|
||||
"obsidian-jupyter",
|
||||
"obsidian-completr",
|
||||
"nldates-obsidian",
|
||||
"obsidian-day-planner",
|
||||
"break-page"
|
||||
]
|
20
.obsidian/graph.json
vendored
20
.obsidian/graph.json
vendored
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"collapse-filter": true,
|
||||
"collapse-filter": false,
|
||||
"search": "",
|
||||
"showTags": false,
|
||||
"showAttachments": false,
|
||||
@@ -21,13 +21,6 @@
|
||||
"rgb": 10354945
|
||||
}
|
||||
},
|
||||
{
|
||||
"query": "tag:#excalidraw",
|
||||
"color": {
|
||||
"a": 1,
|
||||
"rgb": 8019199
|
||||
}
|
||||
},
|
||||
{
|
||||
"query": "tag:#PKM OR tag:#obsidian",
|
||||
"color": {
|
||||
@@ -118,6 +111,13 @@
|
||||
"a": 1,
|
||||
"rgb": 35464
|
||||
}
|
||||
},
|
||||
{
|
||||
"query": "tag:#excalidraw",
|
||||
"color": {
|
||||
"a": 1,
|
||||
"rgb": 8019199
|
||||
}
|
||||
}
|
||||
],
|
||||
"collapse-display": true,
|
||||
@@ -125,11 +125,11 @@
|
||||
"textFadeMultiplier": 0,
|
||||
"nodeSizeMultiplier": 1.29210205078125,
|
||||
"lineSizeMultiplier": 1.70143229166667,
|
||||
"collapse-forces": false,
|
||||
"collapse-forces": true,
|
||||
"centerStrength": 0.238240559895833,
|
||||
"repelStrength": 6.47786458333333,
|
||||
"linkStrength": 1,
|
||||
"linkDistance": 30,
|
||||
"scale": 0.42909546648037916,
|
||||
"scale": 1.710725685958075,
|
||||
"close": true
|
||||
}
|
16
.obsidian/hotkeys.json
vendored
16
.obsidian/hotkeys.json
vendored
@@ -901,5 +901,21 @@
|
||||
],
|
||||
"key": "D"
|
||||
}
|
||||
],
|
||||
"app:go-back": [
|
||||
{
|
||||
"modifiers": [
|
||||
"Mod"
|
||||
],
|
||||
"key": "ArrowLeft"
|
||||
}
|
||||
],
|
||||
"app:go-forward": [
|
||||
{
|
||||
"modifiers": [
|
||||
"Mod"
|
||||
],
|
||||
"key": "ArrowRight"
|
||||
}
|
||||
]
|
||||
}
|
BIN
.obsidian/plugins/.DS_Store
vendored
BIN
.obsidian/plugins/.DS_Store
vendored
Binary file not shown.
11
.obsidian/plugins/breadcrumbs/data.json
vendored
11
.obsidian/plugins/breadcrumbs/data.json
vendored
@@ -531,16 +531,15 @@
|
||||
},
|
||||
"trail": {
|
||||
"enabled": true,
|
||||
"format": "path",
|
||||
"format": "grid",
|
||||
"selection": "all",
|
||||
"default_depth": 25,
|
||||
"default_depth": 5,
|
||||
"no_path_message": "",
|
||||
"show_controls": true,
|
||||
"merge_fields": false,
|
||||
"merge_fields": true,
|
||||
"field_group_labels": [
|
||||
"ups",
|
||||
"sames",
|
||||
"prevs"
|
||||
"sames"
|
||||
],
|
||||
"show_node_options": {
|
||||
"ext": false,
|
||||
@@ -645,7 +644,7 @@
|
||||
},
|
||||
"freeze_implied_edges": {
|
||||
"default_options": {
|
||||
"destination": "dataview-inline"
|
||||
"destination": "frontmatter"
|
||||
}
|
||||
},
|
||||
"thread": {
|
||||
|
48
.obsidian/plugins/break-page/main.js
vendored
Normal file
48
.obsidian/plugins/break-page/main.js
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
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: () => ExamplePlugin
|
||||
});
|
||||
module.exports = __toCommonJS(main_exports);
|
||||
var import_obsidian = require("obsidian");
|
||||
var ExamplePlugin = class extends import_obsidian.Plugin {
|
||||
onload() {
|
||||
this.addCommand({
|
||||
id: "insert-break-page",
|
||||
name: "Insert break page",
|
||||
hotkeys: [],
|
||||
editorCallback: (editor) => {
|
||||
const currentPosition = editor.getCursor();
|
||||
editor.replaceRange(
|
||||
'<div class="page-break" style="page-break-before: always;"></div>\n',
|
||||
currentPosition
|
||||
);
|
||||
editor.setCursor(editor.getCursor().line + 1, 0);
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFsibWFpbi50cyJdLAogICJzb3VyY2VzQ29udGVudCI6IFsiaW1wb3J0IHsgRWRpdG9yLCBQbHVnaW4gfSBmcm9tIFwib2JzaWRpYW5cIjtcclxuXHJcbmV4cG9ydCBkZWZhdWx0IGNsYXNzIEV4YW1wbGVQbHVnaW4gZXh0ZW5kcyBQbHVnaW4ge1xyXG5cdG9ubG9hZCgpIHtcclxuXHRcdHRoaXMuYWRkQ29tbWFuZCh7XHJcblx0XHRcdGlkOiBcImluc2VydC1icmVhay1wYWdlXCIsXHJcblx0XHRcdG5hbWU6IFwiSW5zZXJ0IGJyZWFrIHBhZ2VcIixcclxuXHRcdFx0aG90a2V5czogW10sXHJcblx0XHRcdGVkaXRvckNhbGxiYWNrOiAoZWRpdG9yOiBFZGl0b3IpID0+IHtcclxuXHRcdFx0XHRjb25zdCBjdXJyZW50UG9zaXRpb24gPSBlZGl0b3IuZ2V0Q3Vyc29yKCk7XHJcblx0XHRcdFx0ZWRpdG9yLnJlcGxhY2VSYW5nZShcclxuXHRcdFx0XHRcdCc8ZGl2IGNsYXNzPVwicGFnZS1icmVha1wiIHN0eWxlPVwicGFnZS1icmVhay1iZWZvcmU6IGFsd2F5cztcIj48L2Rpdj5cXG4nLFxyXG5cdFx0XHRcdFx0Y3VycmVudFBvc2l0aW9uXHJcblx0XHRcdFx0KTtcclxuXHRcdFx0XHRlZGl0b3Iuc2V0Q3Vyc29yKGVkaXRvci5nZXRDdXJzb3IoKS5saW5lICsgMSwgMCk7XHJcblx0XHRcdH0sXHJcblx0XHR9KVxyXG5cdH1cclxufVxuIl0sCiAgIm1hcHBpbmdzIjogIjs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBLHNCQUErQjtBQUUvQixJQUFxQixnQkFBckIsY0FBMkMsdUJBQU87QUFBQSxFQUNqRCxTQUFTO0FBQ1IsU0FBSyxXQUFXO0FBQUEsTUFDZixJQUFJO0FBQUEsTUFDSixNQUFNO0FBQUEsTUFDTixTQUFTLENBQUM7QUFBQSxNQUNWLGdCQUFnQixDQUFDLFdBQW1CO0FBQ25DLGNBQU0sa0JBQWtCLE9BQU8sVUFBVTtBQUN6QyxlQUFPO0FBQUEsVUFDTjtBQUFBLFVBQ0E7QUFBQSxRQUNEO0FBQ0EsZUFBTyxVQUFVLE9BQU8sVUFBVSxFQUFFLE9BQU8sR0FBRyxDQUFDO0FBQUEsTUFDaEQ7QUFBQSxJQUNELENBQUM7QUFBQSxFQUNGO0FBQ0Q7IiwKICAibmFtZXMiOiBbXQp9Cg==
|
9
.obsidian/plugins/break-page/manifest.json
vendored
Normal file
9
.obsidian/plugins/break-page/manifest.json
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"id": "break-page",
|
||||
"name": "PDF break page",
|
||||
"version": "1.0.0",
|
||||
"description": "Add shortkey and command to insert a break page formating for pdf exports.",
|
||||
"author": "CG",
|
||||
"authorUrl": "https://github.com/corentin-godefroy",
|
||||
"isDesktopOnly": false
|
||||
}
|
12
.obsidian/plugins/break-page/styles.css
vendored
Normal file
12
.obsidian/plugins/break-page/styles.css
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
div.page-break::after {
|
||||
content: "Break page. Need at least 1 blank line after.";
|
||||
display: block;
|
||||
font-style: italic;
|
||||
color: gray;
|
||||
}
|
||||
|
||||
@media print {
|
||||
div.page-break::after {
|
||||
display: none;
|
||||
}
|
||||
}
|
@@ -38,5 +38,5 @@
|
||||
],
|
||||
"titleRight": [],
|
||||
"titleCenter": [],
|
||||
"paneRelief": false
|
||||
"paneRelief": true
|
||||
}
|
9
.obsidian/plugins/dynamic-text-concealer/data.json
vendored
Normal file
9
.obsidian/plugins/dynamic-text-concealer/data.json
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"doConcealEditMode": true,
|
||||
"regexp": [
|
||||
"({{1,2}(?![\\s{])(?:c?\\d+(?::{1,2}|\\|))?)(?:[^}]+)(}{1,2})",
|
||||
"^.*(:):.*",
|
||||
"(https://(www\\.)?)"
|
||||
],
|
||||
"enable": true
|
||||
}
|
369
.obsidian/plugins/dynamic-text-concealer/main.js
vendored
Normal file
369
.obsidian/plugins/dynamic-text-concealer/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
11
.obsidian/plugins/dynamic-text-concealer/manifest.json
vendored
Normal file
11
.obsidian/plugins/dynamic-text-concealer/manifest.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "dynamic-text-concealer",
|
||||
"name": "Dynamic Text Concealer",
|
||||
"version": "1.1.1",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Conceal or replace user configured text patterns in Live Preview and Read Mode.",
|
||||
"author": "Matt Cole Anderson",
|
||||
"authorUrl": "https://github.com/mattcoleanderson",
|
||||
"fundingUrl": "https://www.buymeacoffee.com/mattcoleanderson",
|
||||
"isDesktopOnly": false
|
||||
}
|
@@ -6,3 +6,10 @@ available in the app when your plugin is enabled.
|
||||
If your plugin does not need CSS, delete this file.
|
||||
|
||||
*/
|
||||
.dtc-setting {
|
||||
flex: auto;
|
||||
}
|
||||
|
||||
.dtc-hide-match {
|
||||
display: none;
|
||||
}
|
15
.obsidian/plugins/floating-toc/main.js
vendored
Normal file
15
.obsidian/plugins/floating-toc/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/floating-toc/manifest.json
vendored
Normal file
10
.obsidian/plugins/floating-toc/manifest.json
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "floating-toc",
|
||||
"name": "floating toc",
|
||||
"version": "2.4.7",
|
||||
"minAppVersion": "0.14.0",
|
||||
"description": "This is a floating Toc plugin that hovers a table of content containing a header level on the notes sidebar.",
|
||||
"author": "Cuman ",
|
||||
"authorUrl": "https://github.com/cumany/obsidian-floating-toc-plugin",
|
||||
"isDesktopOnly": false
|
||||
}
|
1468
.obsidian/plugins/floating-toc/styles.css
vendored
Normal file
1468
.obsidian/plugins/floating-toc/styles.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
16206
.obsidian/plugins/image2latex/main.js
vendored
16206
.obsidian/plugins/image2latex/main.js
vendored
File diff suppressed because it is too large
Load Diff
10
.obsidian/plugins/image2latex/manifest.json
vendored
10
.obsidian/plugins/image2latex/manifest.json
vendored
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"id": "image2latex",
|
||||
"name": "Image2LaTEX",
|
||||
"version": "1.1.2",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Convert your images to Markdown and MathJax",
|
||||
"author": "Hugo Persson",
|
||||
"authorUrl": "https://github.com/Hugo-Persson",
|
||||
"isDesktopOnly": true
|
||||
}
|
98
.obsidian/plugins/improved-vimcursor/main.js
vendored
98
.obsidian/plugins/improved-vimcursor/main.js
vendored
@@ -1,98 +0,0 @@
|
||||
var __create = Object.create;
|
||||
var __defProp = Object.defineProperty;
|
||||
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
||||
var __getOwnPropNames = Object.getOwnPropertyNames;
|
||||
var __getProtoOf = Object.getPrototypeOf;
|
||||
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
||||
var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
|
||||
var __export = (target, all) => {
|
||||
__markAsModule(target);
|
||||
for (var name in all)
|
||||
__defProp(target, name, { get: all[name], enumerable: true });
|
||||
};
|
||||
var __reExport = (target, module2, desc) => {
|
||||
if (module2 && typeof module2 === "object" || typeof module2 === "function") {
|
||||
for (let key of __getOwnPropNames(module2))
|
||||
if (!__hasOwnProp.call(target, key) && key !== "default")
|
||||
__defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
|
||||
}
|
||||
return target;
|
||||
};
|
||||
var __toModule = (module2) => {
|
||||
return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", module2 && module2.__esModule && "default" in module2 ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
|
||||
};
|
||||
var __async = (__this, __arguments, generator) => {
|
||||
return new Promise((resolve, reject) => {
|
||||
var fulfilled = (value) => {
|
||||
try {
|
||||
step(generator.next(value));
|
||||
} catch (e) {
|
||||
reject(e);
|
||||
}
|
||||
};
|
||||
var rejected = (value) => {
|
||||
try {
|
||||
step(generator.throw(value));
|
||||
} catch (e) {
|
||||
reject(e);
|
||||
}
|
||||
};
|
||||
var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
|
||||
step((generator = generator.apply(__this, __arguments)).next());
|
||||
});
|
||||
};
|
||||
|
||||
// main.ts
|
||||
__export(exports, {
|
||||
default: () => ImprovedVimCursor
|
||||
});
|
||||
var import_obsidian = __toModule(require("obsidian"));
|
||||
var ImprovedVimCursor = class extends import_obsidian.Plugin {
|
||||
onload() {
|
||||
return __async(this, null, function* () {
|
||||
this.setup();
|
||||
this.registerEvent(this.app.workspace.on("file-open", () => {
|
||||
this.setup();
|
||||
}));
|
||||
});
|
||||
}
|
||||
setup() {
|
||||
let view = this.app.workspace.getActiveViewOfType(import_obsidian.MarkdownView);
|
||||
if (!view) {
|
||||
return;
|
||||
}
|
||||
CodeMirror.Vim.defineEx("g0", false, (cm) => {
|
||||
cm.execCommand("goLineLeftSmart");
|
||||
});
|
||||
CodeMirror.Vim.defineEx("gDollar", false, (cm) => {
|
||||
cm.execCommand("goLineRight");
|
||||
});
|
||||
CodeMirror.Vim.defineEx("pHead", false, (cm) => {
|
||||
const { line } = cm.getCursor();
|
||||
const text = cm.getValue();
|
||||
const split = text.split("\n");
|
||||
let last = 0;
|
||||
for (let i = 0; i < line; i++) {
|
||||
const text2 = split[i];
|
||||
if (text2.match(/^#{1,6} /)) {
|
||||
last = i;
|
||||
}
|
||||
}
|
||||
cm.setCursor(last, 0);
|
||||
});
|
||||
CodeMirror.Vim.defineEx("nHead", false, (cm) => {
|
||||
const { line } = cm.getCursor();
|
||||
const text = cm.getValue();
|
||||
const split = text.split("\n");
|
||||
let last = split.length - 1;
|
||||
for (let i = last; i > line; i--) {
|
||||
const text2 = split[i];
|
||||
if (text2.match(/^#{1,6} /)) {
|
||||
last = i;
|
||||
}
|
||||
}
|
||||
cm.setCursor(last, 0);
|
||||
});
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFsibWFpbi50cyJdLAogICJzb3VyY2VzQ29udGVudCI6IFsiaW1wb3J0IHtNYXJrZG93blZpZXcsIFBsdWdpbn0gZnJvbSAnb2JzaWRpYW4nO1xyXG5cclxuZGVjbGFyZSBjb25zdCBDb2RlTWlycm9yOiBhbnk7XHJcblxyXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBJbXByb3ZlZFZpbUN1cnNvciBleHRlbmRzIFBsdWdpbiB7XHJcbiAgYXN5bmMgb25sb2FkKCkge1xyXG4gICAgdGhpcy5zZXR1cCgpXHJcblxyXG4gICAgdGhpcy5yZWdpc3RlckV2ZW50KHRoaXMuYXBwLndvcmtzcGFjZS5vbignZmlsZS1vcGVuJywgKCkgPT4ge1xyXG4gICAgICB0aGlzLnNldHVwKCk7XHJcbiAgICB9KSk7XHJcbiAgfVxyXG5cclxuICBzZXR1cCgpIHtcclxuICAgIGxldCB2aWV3ID0gdGhpcy5hcHAud29ya3NwYWNlLmdldEFjdGl2ZVZpZXdPZlR5cGUoTWFya2Rvd25WaWV3KVxyXG4gICAgaWYoIXZpZXcpIHtcclxuICAgICAgcmV0dXJuXHJcbiAgICB9XHJcblxyXG4gICAgQ29kZU1pcnJvci5WaW0uZGVmaW5lRXgoXCJnMFwiLCBmYWxzZSwgKGNtOiBDb2RlTWlycm9yLkVkaXRvcikgPT4ge1xyXG4gICAgICBjbS5leGVjQ29tbWFuZChcImdvTGluZUxlZnRTbWFydFwiKTtcclxuICAgIH0pXHJcblxyXG4gICAgQ29kZU1pcnJvci5WaW0uZGVmaW5lRXgoXCJnRG9sbGFyXCIsIGZhbHNlLCAoY206IENvZGVNaXJyb3IuRWRpdG9yKSA9PiB7XHJcbiAgICAgIGNtLmV4ZWNDb21tYW5kKFwiZ29MaW5lUmlnaHRcIik7XHJcbiAgICB9KVxyXG5cclxuICAgIENvZGVNaXJyb3IuVmltLmRlZmluZUV4KFwicEhlYWRcIiwgZmFsc2UsIChjbTogQ29kZU1pcnJvci5FZGl0b3IpID0+IHtcclxuICAgICAgY29uc3QgeyBsaW5lIH0gPSAgY20uZ2V0Q3Vyc29yKClcclxuICAgICAgY29uc3QgdGV4dCA9IGNtLmdldFZhbHVlKClcclxuICAgICAgY29uc3Qgc3BsaXQgPSB0ZXh0LnNwbGl0KFwiXFxuXCIpO1xyXG5cclxuICAgICAgbGV0IGxhc3QgPSAwO1xyXG4gICAgICBmb3IgKGxldCBpID0gMDsgaSA8IGxpbmU7IGkrKykge1xyXG4gICAgICAgIGNvbnN0IHRleHQgPSBzcGxpdFtpXTtcclxuICAgICAgICBpZiAodGV4dC5tYXRjaCgvXiN7MSw2fSAvKSkge1xyXG4gICAgICAgICAgbGFzdCA9IGk7XHJcbiAgICAgICAgfVxyXG4gICAgICB9XHJcbiAgICAgIGNtLnNldEN1cnNvcihsYXN0LCAwKTtcclxuICAgIH0pXHJcblxyXG4gICAgQ29kZU1pcnJvci5WaW0uZGVmaW5lRXgoXCJuSGVhZFwiLCBmYWxzZSwgKGNtOiBDb2RlTWlycm9yLkVkaXRvcikgPT4ge1xyXG4gICAgICBjb25zdCB7IGxpbmUgfSA9ICBjbS5nZXRDdXJzb3IoKVxyXG4gICAgICBjb25zdCB0ZXh0ID0gY20uZ2V0VmFsdWUoKVxyXG4gICAgICBjb25zdCBzcGxpdCA9IHRleHQuc3BsaXQoXCJcXG5cIik7XHJcblxyXG4gICAgICBsZXQgbGFzdCA9IHNwbGl0Lmxlbmd0aCAtIDE7XHJcbiAgICAgIGZvciAobGV0IGkgPSBsYXN0OyBpID4gbGluZTsgaS0tKSB7XHJcbiAgICAgICAgY29uc3QgdGV4dCA9IHNwbGl0W2ldO1xyXG4gICAgICAgIGlmICh0ZXh0Lm1hdGNoKC9eI3sxLDZ9IC8pKSB7XHJcbiAgICAgICAgICBsYXN0ID0gaTtcclxuICAgICAgICB9XHJcbiAgICAgIH1cclxuICAgICAgY20uc2V0Q3Vyc29yKGxhc3QsIDApO1xyXG4gICAgfSlcclxuICB9XHJcbn1cclxuIl0sCiAgIm1hcHBpbmdzIjogIjs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUE7QUFBQTtBQUFBO0FBQUEsc0JBQW1DO0FBSW5DLHNDQUErQyx1QkFBTztBQUFBLEVBQzlDLFNBQVM7QUFBQTtBQUNiLFdBQUs7QUFFTCxXQUFLLGNBQWMsS0FBSyxJQUFJLFVBQVUsR0FBRyxhQUFhLE1BQU07QUFDMUQsYUFBSztBQUFBO0FBQUE7QUFBQTtBQUFBLEVBSVQsUUFBUTtBQUNOLFFBQUksT0FBTyxLQUFLLElBQUksVUFBVSxvQkFBb0I7QUFDbEQsUUFBRyxDQUFDLE1BQU07QUFDUjtBQUFBO0FBR0YsZUFBVyxJQUFJLFNBQVMsTUFBTSxPQUFPLENBQUMsT0FBMEI7QUFDOUQsU0FBRyxZQUFZO0FBQUE7QUFHakIsZUFBVyxJQUFJLFNBQVMsV0FBVyxPQUFPLENBQUMsT0FBMEI7QUFDbkUsU0FBRyxZQUFZO0FBQUE7QUFHakIsZUFBVyxJQUFJLFNBQVMsU0FBUyxPQUFPLENBQUMsT0FBMEI7QUFDakUsWUFBTSxFQUFFLFNBQVUsR0FBRztBQUNyQixZQUFNLE9BQU8sR0FBRztBQUNoQixZQUFNLFFBQVEsS0FBSyxNQUFNO0FBRXpCLFVBQUksT0FBTztBQUNYLGVBQVMsSUFBSSxHQUFHLElBQUksTUFBTSxLQUFLO0FBQzdCLGNBQU0sUUFBTyxNQUFNO0FBQ25CLFlBQUksTUFBSyxNQUFNLGFBQWE7QUFDMUIsaUJBQU87QUFBQTtBQUFBO0FBR1gsU0FBRyxVQUFVLE1BQU07QUFBQTtBQUdyQixlQUFXLElBQUksU0FBUyxTQUFTLE9BQU8sQ0FBQyxPQUEwQjtBQUNqRSxZQUFNLEVBQUUsU0FBVSxHQUFHO0FBQ3JCLFlBQU0sT0FBTyxHQUFHO0FBQ2hCLFlBQU0sUUFBUSxLQUFLLE1BQU07QUFFekIsVUFBSSxPQUFPLE1BQU0sU0FBUztBQUMxQixlQUFTLElBQUksTUFBTSxJQUFJLE1BQU0sS0FBSztBQUNoQyxjQUFNLFFBQU8sTUFBTTtBQUNuQixZQUFJLE1BQUssTUFBTSxhQUFhO0FBQzFCLGlCQUFPO0FBQUE7QUFBQTtBQUdYLFNBQUcsVUFBVSxNQUFNO0FBQUE7QUFBQTtBQUFBOyIsCiAgIm5hbWVzIjogW10KfQo=
|
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"id": "improved-vimcursor",
|
||||
"name": "Improved VimCursor",
|
||||
"version": "0.0.1",
|
||||
"minAppVersion": "0.12.0",
|
||||
"description": "An improved experience with the cursor in obsidian",
|
||||
"author": "hhhapz",
|
||||
"authorUrl": "https://github.com/hhhapz",
|
||||
"isDesktopOnly": true
|
||||
}
|
9560
.obsidian/plugins/nldates-obsidian/main.js
vendored
Normal file
9560
.obsidian/plugins/nldates-obsidian/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/nldates-obsidian/manifest.json
vendored
Normal file
10
.obsidian/plugins/nldates-obsidian/manifest.json
vendored
Normal 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"
|
||||
}
|
@@ -4,7 +4,7 @@
|
||||
"autoFocus": true,
|
||||
"autoTrigger": true,
|
||||
"minWordLength": 4,
|
||||
"minWordTriggerLength": 1,
|
||||
"minWordTriggerLength": 6,
|
||||
"wordInsertionMode": "Ignore-Case & Append",
|
||||
"ignoreDiacriticsWhenFiltering": false,
|
||||
"latexProviderEnabled": true,
|
||||
@@ -18,5 +18,6 @@
|
||||
"frontMatterTagAppendSuffix": true,
|
||||
"frontMatterIgnoreCase": true,
|
||||
"calloutProviderEnabled": true,
|
||||
"calloutProviderSource": "Completr",
|
||||
"insertionKey": "Enter"
|
||||
}
|
@@ -2072,11 +2072,9 @@ addr
|
||||
annule
|
||||
applique
|
||||
appelés
|
||||
arctangente
|
||||
arctangentes
|
||||
après
|
||||
arrivée
|
||||
algébrique
|
||||
abélien
|
||||
addresse
|
||||
auteur
|
||||
@@ -2088,16 +2086,12 @@ affirmer
|
||||
afin
|
||||
archives
|
||||
associatif
|
||||
apprendre
|
||||
agenda
|
||||
apps
|
||||
ankiweb
|
||||
abb
|
||||
arithmétique
|
||||
abord
|
||||
algorithme
|
||||
araignée
|
||||
associative
|
||||
ar
|
||||
az
|
||||
aG
|
||||
@@ -2431,7 +2425,6 @@ appartenance
|
||||
alternative
|
||||
associer
|
||||
actuelle
|
||||
applications
|
||||
alembert
|
||||
ayant
|
||||
affixe
|
||||
@@ -3953,7 +3946,6 @@ accappare
|
||||
admettent
|
||||
autorisation
|
||||
avantagé
|
||||
algorithmes
|
||||
aNkp
|
||||
aauM
|
||||
aOco
|
||||
@@ -3981,7 +3973,6 @@ annuler
|
||||
annuller
|
||||
avancée
|
||||
abordée
|
||||
additive
|
||||
alternés
|
||||
araE
|
||||
aUhwJ
|
||||
@@ -25583,7 +25574,6 @@ tgbyt
|
||||
tCMwCFDu
|
||||
type
|
||||
triplet
|
||||
trigonométrie
|
||||
théorème
|
||||
téléphonique
|
||||
théorique
|
||||
@@ -25608,13 +25598,11 @@ trigonométrique
|
||||
trashmail
|
||||
taile
|
||||
tableau
|
||||
transitive
|
||||
table
|
||||
touche
|
||||
topologies
|
||||
total
|
||||
tour
|
||||
transitivité
|
||||
transposée
|
||||
toile
|
||||
tacite
|
||||
@@ -32869,7 +32857,6 @@ Tpn
|
||||
Taylor
|
||||
TclEUkpT
|
||||
Tgujs
|
||||
TCP
|
||||
Transmission
|
||||
TaHlkq
|
||||
TRMPMWjp
|
||||
@@ -37710,7 +37697,6 @@ RaK
|
||||
RYu
|
||||
RWv
|
||||
RmM
|
||||
RR
|
||||
Rry
|
||||
RiR
|
||||
RC
|
||||
@@ -38992,7 +38978,6 @@ NfC
|
||||
NOzM
|
||||
Ndc
|
||||
Names
|
||||
Note
|
||||
NM
|
||||
Name
|
||||
NkN
|
||||
@@ -60833,7 +60818,6 @@ ZwD
|
||||
ZU
|
||||
Zoh
|
||||
ZG
|
||||
ZF
|
||||
ZJ
|
||||
ZpCm
|
||||
Zr
|
||||
@@ -62189,7 +62173,6 @@ PhC
|
||||
PEN
|
||||
PamZmE
|
||||
PuY
|
||||
PC
|
||||
PGB
|
||||
PaC
|
||||
PjG
|
||||
|
44
.obsidian/plugins/obsidian-day-planner/data.json
vendored
Normal file
44
.obsidian/plugins/obsidian-day-planner/data.json
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"snapStepMinutes": 10,
|
||||
"progressIndicator": "bar",
|
||||
"showTaskNotification": true,
|
||||
"zoomLevel": 1,
|
||||
"timelineIcon": "horizontal-split",
|
||||
"endLabel": "All done",
|
||||
"startHour": 8,
|
||||
"timelineDateFormat": "YYYY-MM-DD",
|
||||
"centerNeedle": true,
|
||||
"plannerHeading": "Todo",
|
||||
"plannerHeadingLevel": 1,
|
||||
"timelineColored": false,
|
||||
"timelineStartColor": "#006466",
|
||||
"timelineEndColor": "#4d194d",
|
||||
"timestampFormat": "HH:mm",
|
||||
"hourFormat": "H",
|
||||
"dataviewSource": "",
|
||||
"extendDurationUntilNext": false,
|
||||
"defaultDurationMinutes": 30,
|
||||
"showTimestampInTaskBlock": false,
|
||||
"showUncheduledTasks": true,
|
||||
"showUnscheduledNestedTasks": true,
|
||||
"showNow": true,
|
||||
"showNext": true,
|
||||
"pluginVersion": "0.22.1",
|
||||
"showCompletedTasks": true,
|
||||
"showSubtasksInTaskBlocks": true,
|
||||
"icals": [
|
||||
{
|
||||
"name": "Université",
|
||||
"url": "https://ade.univ-tours.fr/jsp/custom/modules/plannings/pn8k10Y8.shu",
|
||||
"color": "#00a313"
|
||||
},
|
||||
{
|
||||
"name": "Personnel",
|
||||
"url": "webcal://p41-caldav.icloud.com/published/2/MTAxMTY2MzAzOTMxMDExNnNhSybinMIYEV7aX8u2ivyi98sfrMEGPfJqB3GCtWcY",
|
||||
"color": "#ffd609"
|
||||
}
|
||||
],
|
||||
"colorOverrides": [],
|
||||
"releaseNotes": true,
|
||||
"taskStatusOnCreation": " "
|
||||
}
|
57008
.obsidian/plugins/obsidian-day-planner/main.js
vendored
Normal file
57008
.obsidian/plugins/obsidian-day-planner/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
11
.obsidian/plugins/obsidian-day-planner/manifest.json
vendored
Normal file
11
.obsidian/plugins/obsidian-day-planner/manifest.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "obsidian-day-planner",
|
||||
"name": "Day Planner",
|
||||
"version": "0.22.1",
|
||||
"minAppVersion": "0.16.0",
|
||||
"description": "A day planner with clean UI and readable syntax",
|
||||
"author": "James Lynch, continued by Ivan Lednev",
|
||||
"authorUrl": "https://github.com/ivan-lednev",
|
||||
"fundingUrl": "https://www.buymeacoffee.com/machineelf",
|
||||
"isDesktopOnly": false
|
||||
}
|
1065
.obsidian/plugins/obsidian-day-planner/styles.css
vendored
Normal file
1065
.obsidian/plugins/obsidian-day-planner/styles.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3787
.obsidian/plugins/obsidian-excalidraw-plugin/data.json
vendored
3787
.obsidian/plugins/obsidian-excalidraw-plugin/data.json
vendored
File diff suppressed because it is too large
Load Diff
2
.obsidian/plugins/obsidian-hider/data.json
vendored
2
.obsidian/plugins/obsidian-hider/data.json
vendored
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"hideRibbon": false,
|
||||
"hideStatus": false,
|
||||
"hideTabs": false,
|
||||
"hideScroll": true,
|
||||
@@ -11,6 +10,7 @@
|
||||
"hideInstructions": false,
|
||||
"hidePropertiesReading": false,
|
||||
"hideVault": false,
|
||||
"hideRibbon": false,
|
||||
"hideMeta": false,
|
||||
"frameless": false
|
||||
}
|
@@ -1,25 +0,0 @@
|
||||
{
|
||||
"token": "6879-Ka3wxKY_YdZncP3FC4iv5YlkmIlub0QmodRke6Ytl-A",
|
||||
"user": "acct:OsKaR31415@hypothes.is",
|
||||
"highlightsFolder": "sources/hypothesis",
|
||||
"isConnected": true,
|
||||
"template": "{% if is_new_article %}{% if author %}author:: [[{{author}}]]\nurl:: [{{author}}]({{url}})\n{% else %}\nurl:: {{url}}\n{% endif %}{% endif %}\n\n{% if is_new_article %}\n## Annotations\n{% for highlight in highlights %}\n> [!zotero] [{{highlight.updated}}]({{highlight.incontext}}){% for line in highlight.text.split(\"\\n\") %}\n> {{line}}{% endfor %}{% if highlight.annotation %}\n> > [!note] Annotations{% for line in highlight.annotation.split(\"\\n\") %}\n> > {{line}}{% endfor %}\n{% endif %}{% endfor %}{% endif %}\n\n{% if is_new_article %}\n## Notes de pages\n{% for highlight in page_notes %}\n> [!note] [{{highlight.updated}}]({{highlight.incontext}})\n> {{highlight.annotation}}\n{% endfor %}\n{% endif %}\n",
|
||||
"syncOnBoot": true,
|
||||
"autoSyncInterval": 0,
|
||||
"dateTimeFormat": "YYYY-MM-DD HH:mm:ss",
|
||||
"history": {
|
||||
"totalArticles": 1,
|
||||
"totalHighlights": 5
|
||||
},
|
||||
"groups": [
|
||||
{
|
||||
"id": "__world__",
|
||||
"name": "Public",
|
||||
"public": true,
|
||||
"type": "open",
|
||||
"selected": true
|
||||
}
|
||||
],
|
||||
"useDomainFolders": false,
|
||||
"lastSyncDate": "2024-08-13T19:01:56.699Z"
|
||||
}
|
File diff suppressed because one or more lines are too long
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"id": "obsidian-hypothesis-plugin",
|
||||
"name": "Hypothes.is",
|
||||
"version": "0.1.19",
|
||||
"minAppVersion": "0.11.0",
|
||||
"description": "Sync your Hypothesis highlights",
|
||||
"author": "weichenw",
|
||||
"authorUrl": "https://github.com/weichenw",
|
||||
"isDesktopOnly": false
|
||||
}
|
File diff suppressed because one or more lines are too long
@@ -8,7 +8,7 @@
|
||||
"lineWidth": 40,
|
||||
"lineWidthWide": 5000,
|
||||
"maxWidth": 98,
|
||||
"textNormal": 25.5,
|
||||
"textNormal": 31.5,
|
||||
"textSmall": 13,
|
||||
"imgGrid": false,
|
||||
"imgWidth": "img-default-width",
|
||||
|
@@ -43,7 +43,7 @@
|
||||
"singlelineCardSeparator": "::",
|
||||
"singlelineReversedCardSeparator": ":::"
|
||||
},
|
||||
"buryDate": "2024-09-20",
|
||||
"buryDate": "2024-09-24",
|
||||
"buryList": [],
|
||||
"historyDeck": ""
|
||||
}
|
@@ -5,7 +5,7 @@
|
||||
"minimal-style@@h5-weight": 600,
|
||||
"minimal-style@@h6-weight": 600,
|
||||
"minimal-cards-style@@cards-min-width": "400px",
|
||||
"customizable-page-header-buttons@@page-header-spacing-desktop": 0,
|
||||
"customizable-page-header-buttons@@page-header-spacing-desktop": 6,
|
||||
"minimal-advanced@@cursor": "default",
|
||||
"minimal-style@@checkbox-shape": "checkbox-square",
|
||||
"quick-explorer@@qe-hide-breadcrumbs": false,
|
||||
@@ -66,7 +66,7 @@
|
||||
"list-callouts@@lc-bg-left-checkbox": 60,
|
||||
"list-callouts@@lc-bg-left-checkbox-lp": 43,
|
||||
"list-callouts@@lc-bg-opacity-dark": 0.1,
|
||||
"pane-relief@@pr-sliding-panes-desktop-width": "700px",
|
||||
"pane-relief@@pr-sliding-panes-desktop-width": "1100px",
|
||||
"minimal-style@@h2-color@@light": "#C9893A",
|
||||
"minimal-style@@h3-color@@light": "#9E72AF",
|
||||
"minimal-style@@h4-color@@light": "#62A563",
|
||||
|
220
.obsidian/plugins/obsidian-tasks-plugin/data.json
vendored
220
.obsidian/plugins/obsidian-tasks-plugin/data.json
vendored
@@ -1,11 +1,229 @@
|
||||
{
|
||||
"globalQuery": "",
|
||||
"globalFilter": "#task",
|
||||
"removeGlobalFilter": true,
|
||||
"taskFormat": "tasksPluginEmoji",
|
||||
"setCreatedDate": false,
|
||||
"setDoneDate": true,
|
||||
"autoSuggestInEditor": false,
|
||||
"setCancelledDate": true,
|
||||
"autoSuggestInEditor": true,
|
||||
"autoSuggestMinMatch": 0,
|
||||
"autoSuggestMaxItems": 6,
|
||||
"provideAccessKeys": true,
|
||||
"useFilenameAsScheduledDate": true,
|
||||
"filenameAsScheduledDateFormat": "",
|
||||
"filenameAsDateFolders": [],
|
||||
"recurrenceOnNextLine": false,
|
||||
"statusSettings": {
|
||||
"coreStatuses": [
|
||||
{
|
||||
"symbol": " ",
|
||||
"name": "Todo",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": true,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "x",
|
||||
"name": "Done",
|
||||
"nextStatusSymbol": " ",
|
||||
"availableAsCommand": true,
|
||||
"type": "DONE"
|
||||
}
|
||||
],
|
||||
"customStatuses": [
|
||||
{
|
||||
"symbol": "/",
|
||||
"name": "In Progress",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": true,
|
||||
"type": "IN_PROGRESS"
|
||||
},
|
||||
{
|
||||
"symbol": "-",
|
||||
"name": "Cancelled",
|
||||
"nextStatusSymbol": " ",
|
||||
"availableAsCommand": true,
|
||||
"type": "CANCELLED"
|
||||
},
|
||||
{
|
||||
"symbol": " ",
|
||||
"name": "to-do",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "/",
|
||||
"name": "incomplete",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "IN_PROGRESS"
|
||||
},
|
||||
{
|
||||
"symbol": "x",
|
||||
"name": "done",
|
||||
"nextStatusSymbol": " ",
|
||||
"availableAsCommand": false,
|
||||
"type": "DONE"
|
||||
},
|
||||
{
|
||||
"symbol": "-",
|
||||
"name": "canceled",
|
||||
"nextStatusSymbol": " ",
|
||||
"availableAsCommand": false,
|
||||
"type": "CANCELLED"
|
||||
},
|
||||
{
|
||||
"symbol": ">",
|
||||
"name": "forwarded",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "<",
|
||||
"name": "scheduling",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "?",
|
||||
"name": "question",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "!",
|
||||
"name": "important",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "*",
|
||||
"name": "star",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "\"",
|
||||
"name": "quote",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "l",
|
||||
"name": "location",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "b",
|
||||
"name": "bookmark",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "i",
|
||||
"name": "information",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "S",
|
||||
"name": "savings",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "I",
|
||||
"name": "idea",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "p",
|
||||
"name": "pros",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "c",
|
||||
"name": "cons",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "f",
|
||||
"name": "fire",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "k",
|
||||
"name": "key",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "w",
|
||||
"name": "win",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "u",
|
||||
"name": "up",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
},
|
||||
{
|
||||
"symbol": "d",
|
||||
"name": "down",
|
||||
"nextStatusSymbol": "x",
|
||||
"availableAsCommand": false,
|
||||
"type": "TODO"
|
||||
}
|
||||
]
|
||||
},
|
||||
"features": {
|
||||
"INTERNAL_TESTING_ENABLED_BY_DEFAULT": true
|
||||
},
|
||||
"generalSettings": {},
|
||||
"headingOpened": {
|
||||
"Core Statuses": true,
|
||||
"Custom Statuses": true
|
||||
},
|
||||
"debugSettings": {
|
||||
"ignoreSortInstructions": false,
|
||||
"showTaskHiddenData": false,
|
||||
"recordTimings": false
|
||||
},
|
||||
"loggingOptions": {
|
||||
"minLevels": {
|
||||
"": "info",
|
||||
"tasks": "info",
|
||||
"tasks.Cache": "info",
|
||||
"tasks.Events": "info",
|
||||
"tasks.File": "info",
|
||||
"tasks.Query": "info",
|
||||
"tasks.Task": "info"
|
||||
}
|
||||
}
|
||||
}
|
2
.obsidian/plugins/quick-preview/data.json
vendored
2
.obsidian/plugins/quick-preview/data.json
vendored
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"modifier": "Alt",
|
||||
"modifier": "Ctrl",
|
||||
"lazyHide": true,
|
||||
"position": "Auto",
|
||||
"customPositionX": 0,
|
||||
|
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"snippets_file": "def : > [!definition] \ndéf : > [!définition] \nddef : > [!definition] $end$\\n> \\n^definition\nddéf : > [!définition] $end$\\n> \\n^definition\n\ndem : > [!démonstration]- Démonstration$end$\nprop : > [!proposition] Proposition\\n> $end$\ncor : > [!corollaire] Corollaire \\n> $end$\n\nquery : > [!query]\nnote : > [!note]\nquestion : > [!question]\nimportant : > [!important]\nexemple : > [!example] Exemple$end$\\n> \\n^example\ninfo : > [!info] \ntodo : > [!todo] \ndone : > [!done] \nwarning : > [!warning] \nattention : > [!attention] \ntldr : > [!tldr] \nexercice : > [!tldr] Exercice\nidea : > [!idea] \n\navantages : > [!check] Avantages\ninconvenients : > [!fail] Inconvénients\ninconvénients : > [!fail] Inconvéninents\n\npc : > [!check] Avantages\\n> $end$\\n^pros\\n\\n> [!fail] Inconvénients\\n> \\n^cons\nps : > [!error] Problèmes\\n> $ens$\\n^problems\\n\\n> [!idea] Solutions\\n> \\n^solutions\n\nfm : ---\\n$end$\\n---\nalias : ---\\nalias: [ \"$end$\" ]\\n---\n\nev : [[espace vectoriel]]\nevs : [[espace vectoriel|espaces vectoriels]]\nkev : $\\mathbf{K}$-[[espace vectoriel]]\nrev : $\\mathbb{R}$-[[espace vectoriel]]\nrevs : $\\mathbb{R}$-[[espace vectoriel|espaces vectoriels]]\n\nsg : [[sous-groupe]]\nem : [[espace métrique]]\n\nqdef : ::: {.callout-note icon=false}\\n## Définition\\n\\n$end$\\n:::\nqnote : ::: {.callout-note}\\n## $end$\\n\\n:::\nqtip : ::: {.callout-tip}\\n## $end$\\n\\n:::\n\n",
|
||||
"snippets_file": "def : > [!definition] \ndéf : > [!définition] \nddef : > [!definition] $end$\\n> \\n^definition\nddéf : > [!définition] $end$\\n> \\n^definition\n\ndem : > [!démonstration]- Démonstration$end$\nprop : > [!proposition]+ Proposition\\n> $end$\ncor : > [!corollaire] Corollaire \\n> $end$\n\nquery : > [!query]\nnote : > [!note]\nquestion : > [!question]\nimportant : > [!important]\nexemple : > [!example] Exemple$end$\\n> \\n^example\ninfo : > [!info] \ntodo : > [!todo] \ndone : > [!done] \nwarning : > [!warning] \nattention : > [!attention] \ntldr : > [!tldr] \nexercice : > [!tldr] Exercice\nidea : > [!idea] \n\navantages : > [!check] Avantages\ninconvenients : > [!fail] Inconvénients\ninconvénients : > [!fail] Inconvéninents\n\npc : > [!check] Avantages\\n> $end$\\n^pros\\n\\n> [!fail] Inconvénients\\n> \\n^cons\nps : > [!error] Problèmes\\n> $ens$\\n^problems\\n\\n> [!idea] Solutions\\n> \\n^solutions\n\nfm : ---\\n$end$\\n---\nalias : ---\\nalias: [ \"$end$\" ]\\n---\n\nev : [[espace vectoriel]]\nevs : [[espace vectoriel|espaces vectoriels]]\nkev : $\\mathbf{K}$-[[espace vectoriel]]\nrev : $\\mathbb{R}$-[[espace vectoriel]]\nrevs : $\\mathbb{R}$-[[espace vectoriel|espaces vectoriels]]\n\nsg : [[sous-groupe]]\nem : [[espace métrique]]\n\nqdef : ::: {.callout-note icon=false}\\n## Définition\\n\\n$end$\\n:::\nqnote : ::: {.callout-note}\\n## $end$\\n\\n:::\nqtip : ::: {.callout-tip}\\n## $end$\\n\\n:::\n\n",
|
||||
"snippets": [
|
||||
"def : > [!definition] ",
|
||||
"déf : > [!définition] ",
|
||||
"ddef : > [!definition] $end$\\n> \\n^definition",
|
||||
"ddéf : > [!définition] $end$\\n> \\n^definition",
|
||||
"dem : > [!démonstration]- Démonstration$end$",
|
||||
"prop : > [!proposition] Proposition\\n> $end$",
|
||||
"prop : > [!proposition]+ Proposition\\n> $end$",
|
||||
"cor : > [!corollaire] Corollaire \\n> $end$",
|
||||
"query : > [!query]",
|
||||
"note : > [!note]",
|
||||
|
10
.obsidian/plugins/various-complements/data.json
vendored
10
.obsidian/plugins/various-complements/data.json
vendored
@@ -9,11 +9,11 @@
|
||||
"treatUnderscoreAsPartOfWord": false,
|
||||
"maxNumberOfSuggestions": 10,
|
||||
"maxNumberOfWordsAsPhrase": 3,
|
||||
"minNumberOfCharactersTriggered": 1,
|
||||
"minNumberOfCharactersTriggered": 3,
|
||||
"minNumberOfWordsTriggeredPhrase": 1,
|
||||
"complementAutomatically": true,
|
||||
"delayMilliSeconds": 0,
|
||||
"disableSuggestionsDuringImeOn": false,
|
||||
"delayMilliSeconds": 20,
|
||||
"disableSuggestionsDuringImeOn": true,
|
||||
"disableSuggestionsInMathBlock": true,
|
||||
"insertSpaceAfterCompletion": false,
|
||||
"firstCharactersDisableSuggestions": ":/^",
|
||||
@@ -105,9 +105,9 @@
|
||||
"enabled": true,
|
||||
"historyFilePath": "",
|
||||
"maxDaysToKeepHistory": 30,
|
||||
"maxNumberOfHistoryToKeep": 0
|
||||
"maxNumberOfHistoryToKeep": 5000
|
||||
},
|
||||
"disableOnMobile": false,
|
||||
"disableOnMobile": true,
|
||||
"showLogAboutPerformanceInConsole": false,
|
||||
"insertAfterCompletion": true,
|
||||
"selectionHistoryTree": {},
|
||||
|
File diff suppressed because one or more lines are too long
BIN
.obsidian/snippets/.DS_Store
vendored
Normal file
BIN
.obsidian/snippets/.DS_Store
vendored
Normal file
Binary file not shown.
10
.obsidian/snippets/general_interface.css
vendored
10
.obsidian/snippets/general_interface.css
vendored
@@ -34,16 +34,6 @@
|
||||
|
||||
|
||||
|
||||
/* Graph Analysis */
|
||||
.GA-View {
|
||||
font-size: 1vw;
|
||||
}
|
||||
table.GA-table {
|
||||
--table-font-size: 1vw;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* spaced repetition modal */
|
||||
.sr-modal-content {
|
||||
font-size: calc(max(1.5vw , 3vh));
|
||||
|
4
.obsidian/snippets/latex_mathjax.css
vendored
Normal file
4
.obsidian/snippets/latex_mathjax.css
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
.MJX-TEX mjx-mtext {
|
||||
font-family: "CMU Bright" !important;
|
||||
}
|
44
.obsidian/snippets/tabs.css
vendored
44
.obsidian/snippets/tabs.css
vendored
@@ -18,29 +18,29 @@ body {
|
||||
/* } */
|
||||
|
||||
|
||||
/* VERTICAL TABS PLUGIN */
|
||||
|
||||
.koncham-workspace-root-panes>.nav-folder-children>.nav-file>.nav-file-title
|
||||
{
|
||||
color: var(--text-normal);
|
||||
padding-left: 5px;
|
||||
padding-top: 2px; padding-bottom: 2px;
|
||||
border: 1pt solid transparent;
|
||||
/*/* stacked tabs - hide text */*/
|
||||
/*.workspace .mod-root .workspace-tabs.mod-stacked .workspace-tab-container .workspace-tab-header-inner-title {*/
|
||||
/* width: 0;*/
|
||||
/*}*/
|
||||
|
||||
/*/* stacked tabs - hide icon */*/
|
||||
/*.workspace .mod-root .workspace-tabs.mod-stacked .workspace-tab-container .workspace-tab-header-inner-icon {*/
|
||||
/* display: none;*/
|
||||
/*}*/
|
||||
|
||||
/*/* stacked tabs - adjust note margins */*/
|
||||
/*.markdown-source-view.mod-cm6 {*/
|
||||
/* margin-left: -30px;*/
|
||||
/* margin-right: 10px;*/
|
||||
/*}*/
|
||||
|
||||
/* stacked tabs - old Andy's mode */
|
||||
.workspace .mod-root .workspace-tabs.mod-stacked .workspace-tab-container > * {
|
||||
position: static;
|
||||
}
|
||||
|
||||
.koncham-workspace-root-panes>.nav-folder-children>.nav-file>.nav-file-title.is-active
|
||||
{
|
||||
color: var(--text-normal);
|
||||
border-color: var(--text-normal);
|
||||
/* stacked tabs - border for old Andy's mode */
|
||||
.workspace .mod-root .workspace-tabs.mod-stacked .workspace-tab-container .workspace-tab-header-inner {
|
||||
border-left: var(--divider-width) solid var(--divider-color);
|
||||
}
|
||||
|
||||
|
||||
.theme-dark {
|
||||
/* active tab background color */
|
||||
--nav-item-background-active: #006400;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
0
.trash/Untitled 2 16.md
Normal file
0
.trash/Untitled 2 16.md
Normal file
0
.trash/Untitled 5.md
Normal file
0
.trash/Untitled 5.md
Normal file
4
.trash/Untitled 6.md
Normal file
4
.trash/Untitled 6.md
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
```jupyter
|
||||
print(1+1)
|
||||
```
|
0
.trash/Untitled 7.md
Normal file
0
.trash/Untitled 7.md
Normal file
0
.trash/Untitled 8.md
Normal file
0
.trash/Untitled 8.md
Normal file
@@ -1,6 +1,7 @@
|
||||
---
|
||||
aliases:
|
||||
- Le capital est une puissance conquérante qui a pour vocation de mettre toute la société sous sa coupe
|
||||
- Définition du capital — Frédéric Lordon
|
||||
- Le capital est une puissance conquérante qui a pour vocation de mettre toute la société sous sa coupe.
|
||||
---
|
||||
author:: [[Frédéric Lordon]]
|
||||
source:: [[Quelles stratégies pour le changement Politique ?]]
|
||||
@@ -14,5 +15,5 @@ date:: 2021-07-06
|
||||
> Le capital a réintégré dans ses formes propres la totalité de la production de nos moyens d'existence matérielle.
|
||||
^cite
|
||||
|
||||
## Interprétation
|
||||
# Interprétation
|
||||
|
@@ -5,8 +5,6 @@ up:: [[ensemble]], [[point d'adhérence d'un ensemble|point d'adhérence]]
|
||||
title:: "contient tout ses [[point d'adhérence d'un ensemble|points d'adhérence]]"
|
||||
#maths/topologie
|
||||
|
||||
---
|
||||
|
||||
> [!definition] Ensemble fermé
|
||||
> Un ensemble fermé est un ensemble qui contient toutes ses [[valeur d'adhérence d'une suite|valeur d'adhérence]]
|
||||
^definition
|
@@ -0,0 +1,118 @@
|
||||
---
|
||||
|
||||
excalidraw-plugin: parsed
|
||||
tags: [excalidraw]
|
||||
|
||||
---
|
||||
==⚠ Switch to EXCALIDRAW VIEW in the MORE OPTIONS menu of this document. ⚠== You can decompress Drawing data with the command palette: 'Decompress current Excalidraw file'. For more info check in plugin settings under 'Saving'
|
||||
|
||||
|
||||
# Excalidraw Data
|
||||
## Text Elements
|
||||
x ^v5mil8de
|
||||
|
||||
x ^HTf8WUTq
|
||||
|
||||
inclus dans ^i9dB5T4k
|
||||
|
||||
intersecte à la fois ^WVV4SiUM
|
||||
|
||||
et ^IRk3c5ol
|
||||
|
||||
donc : ^pLXLeZw9
|
||||
|
||||
et ^843HsIv3
|
||||
|
||||
## Embedded Files
|
||||
ff0273d11eeb0017fb02f22f721862ea53852bba: $$A$$
|
||||
|
||||
487e994991420db9a80cda0ebfdfada92f6f03a3: $$A$$
|
||||
|
||||
25360beb537b8ca449ea6525a6ef10111a24067d: $$X\setminus A$$
|
||||
|
||||
0ada9e97287072172a9f87decd11e39d5781c83f: $$\in \bar{A}$$
|
||||
|
||||
de1d17231e5c58d894fe337443031655f8ded1e8: $$\notin \mathring{A}$$
|
||||
|
||||
7270abb796a0ebfbf1fd91c73f61d9ac877c5d6f: $$A$$
|
||||
|
||||
%%
|
||||
## Drawing
|
||||
```compressed-json
|
||||
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=
|
||||
```
|
||||
%%
|
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 26 KiB |
File diff suppressed because it is too large
Load Diff
17
Excalidraw/workflow.excalidraw.svg
Normal file
17
Excalidraw/workflow.excalidraw.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 269 KiB |
@@ -0,0 +1,56 @@
|
||||
# Review and check your Statuses
|
||||
|
||||
## About this file
|
||||
|
||||
This file was created by the Obsidian Tasks plugin (version 7.10.0) to help visualise the task statuses in this vault.
|
||||
|
||||
If you change the Tasks status settings, you can get an updated report by:
|
||||
|
||||
- Going to `Settings` -> `Tasks`.
|
||||
- Clicking on `Review and check your Statuses`.
|
||||
|
||||
You can delete this file any time.
|
||||
|
||||
## Status Settings
|
||||
|
||||
<!--
|
||||
Switch to Live Preview or Reading Mode to see the table.
|
||||
If there are any Markdown formatting characters in status names, such as '*' or '_',
|
||||
Obsidian may only render the table correctly in Reading Mode.
|
||||
-->
|
||||
|
||||
These are the status values in the Core and Custom statuses sections.
|
||||
|
||||
| Status Symbol | Next Status Symbol | Status Name | Status Type | Problems (if any) |
|
||||
| ----- | ----- | ----- | ----- | ----- |
|
||||
| `space` | `x` | Todo | `TODO` | |
|
||||
| `x` | `space` | Done | `DONE` | |
|
||||
| `/` | `x` | In Progress | `IN_PROGRESS` | |
|
||||
| `-` | `space` | Cancelled | `CANCELLED` | |
|
||||
|
||||
## Loaded Settings
|
||||
|
||||
<!-- Switch to Live Preview or Reading Mode to see the diagram. -->
|
||||
|
||||
These are the settings actually used by Tasks.
|
||||
|
||||
```mermaid
|
||||
flowchart LR
|
||||
|
||||
classDef TODO stroke:#f33,stroke-width:3px;
|
||||
classDef DONE stroke:#0c0,stroke-width:3px;
|
||||
classDef IN_PROGRESS stroke:#fa0,stroke-width:3px;
|
||||
classDef CANCELLED stroke:#ddd,stroke-width:3px;
|
||||
classDef NON_TASK stroke:#99e,stroke-width:3px;
|
||||
|
||||
1["'Todo'<br>[ ] -> [x]<br>(TODO)"]:::TODO
|
||||
2["'Done'<br>[x] -> [ ]<br>(DONE)"]:::DONE
|
||||
3["'In Progress'<br>[/] -> [x]<br>(IN_PROGRESS)"]:::IN_PROGRESS
|
||||
4["'Cancelled'<br>[-] -> [ ]<br>(CANCELLED)"]:::CANCELLED
|
||||
1 --> 2
|
||||
2 --> 1
|
||||
3 --> 2
|
||||
4 --> 1
|
||||
|
||||
linkStyle default stroke:gray
|
||||
```
|
@@ -0,0 +1,56 @@
|
||||
# Review and check your Statuses
|
||||
|
||||
## About this file
|
||||
|
||||
This file was created by the Obsidian Tasks plugin (version 7.10.2) to help visualise the task statuses in this vault.
|
||||
|
||||
If you change the Tasks status settings, you can get an updated report by:
|
||||
|
||||
- Going to `Settings` -> `Tasks`.
|
||||
- Clicking on `Review and check your Statuses`.
|
||||
|
||||
You can delete this file any time.
|
||||
|
||||
## Status Settings
|
||||
|
||||
<!--
|
||||
Switch to Live Preview or Reading Mode to see the table.
|
||||
If there are any Markdown formatting characters in status names, such as '*' or '_',
|
||||
Obsidian may only render the table correctly in Reading Mode.
|
||||
-->
|
||||
|
||||
These are the status values in the Core and Custom statuses sections.
|
||||
|
||||
| Status Symbol | Next Status Symbol | Status Name | Status Type | Problems (if any) |
|
||||
| ----- | ----- | ----- | ----- | ----- |
|
||||
| `space` | `x` | Todo | `TODO` | |
|
||||
| `x` | `space` | Done | `DONE` | |
|
||||
| `/` | `x` | In Progress | `IN_PROGRESS` | |
|
||||
| `-` | `space` | Cancelled | `CANCELLED` | |
|
||||
|
||||
## Loaded Settings
|
||||
|
||||
<!-- Switch to Live Preview or Reading Mode to see the diagram. -->
|
||||
|
||||
These are the settings actually used by Tasks.
|
||||
|
||||
```mermaid
|
||||
flowchart LR
|
||||
|
||||
classDef TODO stroke:#f33,stroke-width:3px;
|
||||
classDef DONE stroke:#0c0,stroke-width:3px;
|
||||
classDef IN_PROGRESS stroke:#fa0,stroke-width:3px;
|
||||
classDef CANCELLED stroke:#ddd,stroke-width:3px;
|
||||
classDef NON_TASK stroke:#99e,stroke-width:3px;
|
||||
|
||||
1["'Todo'<br>[ ] -> [x]<br>(TODO)"]:::TODO
|
||||
2["'Done'<br>[x] -> [ ]<br>(DONE)"]:::DONE
|
||||
3["'In Progress'<br>[/] -> [x]<br>(IN_PROGRESS)"]:::IN_PROGRESS
|
||||
4["'Cancelled'<br>[-] -> [ ]<br>(CANCELLED)"]:::CANCELLED
|
||||
1 --> 2
|
||||
2 --> 1
|
||||
3 --> 2
|
||||
4 --> 1
|
||||
|
||||
linkStyle default stroke:gray
|
||||
```
|
@@ -0,0 +1,56 @@
|
||||
# Review and check your Statuses
|
||||
|
||||
## About this file
|
||||
|
||||
This file was created by the Obsidian Tasks plugin (version 7.10.2) to help visualise the task statuses in this vault.
|
||||
|
||||
If you change the Tasks status settings, you can get an updated report by:
|
||||
|
||||
- Going to `Settings` -> `Tasks`.
|
||||
- Clicking on `Review and check your Statuses`.
|
||||
|
||||
You can delete this file any time.
|
||||
|
||||
## Status Settings
|
||||
|
||||
<!--
|
||||
Switch to Live Preview or Reading Mode to see the table.
|
||||
If there are any Markdown formatting characters in status names, such as '*' or '_',
|
||||
Obsidian may only render the table correctly in Reading Mode.
|
||||
-->
|
||||
|
||||
These are the status values in the Core and Custom statuses sections.
|
||||
|
||||
| Status Symbol | Next Status Symbol | Status Name | Status Type | Problems (if any) |
|
||||
| ----- | ----- | ----- | ----- | ----- |
|
||||
| `space` | `x` | Todo | `TODO` | |
|
||||
| `x` | `space` | Done | `DONE` | |
|
||||
| `/` | `x` | In Progress | `IN_PROGRESS` | |
|
||||
| `-` | `space` | Cancelled | `CANCELLED` | |
|
||||
|
||||
## Loaded Settings
|
||||
|
||||
<!-- Switch to Live Preview or Reading Mode to see the diagram. -->
|
||||
|
||||
These are the settings actually used by Tasks.
|
||||
|
||||
```mermaid
|
||||
flowchart LR
|
||||
|
||||
classDef TODO stroke:#f33,stroke-width:3px;
|
||||
classDef DONE stroke:#0c0,stroke-width:3px;
|
||||
classDef IN_PROGRESS stroke:#fa0,stroke-width:3px;
|
||||
classDef CANCELLED stroke:#ddd,stroke-width:3px;
|
||||
classDef NON_TASK stroke:#99e,stroke-width:3px;
|
||||
|
||||
1["'Todo'<br>[ ] -> [x]<br>(TODO)"]:::TODO
|
||||
2["'Done'<br>[x] -> [ ]<br>(DONE)"]:::DONE
|
||||
3["'In Progress'<br>[/] -> [x]<br>(IN_PROGRESS)"]:::IN_PROGRESS
|
||||
4["'Cancelled'<br>[-] -> [ ]<br>(CANCELLED)"]:::CANCELLED
|
||||
1 --> 2
|
||||
2 --> 1
|
||||
3 --> 2
|
||||
4 --> 1
|
||||
|
||||
linkStyle default stroke:gray
|
||||
```
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user