update
This commit is contained in:
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
Reference in New Issue
Block a user