Renaming docs folder

This commit is contained in:
2026-06-17 21:34:02 -04:00
parent 0d4351c91e
commit 2fcf2daf8b
207 changed files with 0 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
{
"alwaysUpdateLinks": true,
"promptDelete": false
}
+3
View File
@@ -0,0 +1,3 @@
{
"theme": "obsidian"
}
+6
View File
@@ -0,0 +1,6 @@
[
"obsidian-note-autocreator",
"custom-font-loader",
"calendar",
"code-styler"
]
+33
View File
@@ -0,0 +1,33 @@
{
"file-explorer": true,
"global-search": true,
"switcher": true,
"graph": true,
"backlink": true,
"canvas": true,
"outgoing-link": true,
"tag-pane": true,
"footnotes": false,
"properties": false,
"page-preview": true,
"daily-notes": true,
"templates": true,
"note-composer": true,
"command-palette": true,
"slash-command": false,
"editor-status": true,
"bookmarks": true,
"markdown-importer": false,
"zk-prefixer": false,
"random-note": false,
"outline": true,
"word-count": true,
"slides": false,
"audio-recorder": false,
"workspaces": false,
"file-recovery": true,
"publish": false,
"sync": true,
"bases": true,
"webviewer": false
}
Binary file not shown.
+22
View File
@@ -0,0 +1,22 @@
{
"collapse-filter": true,
"search": "",
"showTags": false,
"showAttachments": false,
"hideUnresolved": false,
"showOrphans": true,
"collapse-color-groups": true,
"colorGroups": [],
"collapse-display": true,
"showArrow": false,
"textFadeMultiplier": 0,
"nodeSizeMultiplier": 1,
"lineSizeMultiplier": 1,
"collapse-forces": true,
"centerStrength": 0.518713248970312,
"repelStrength": 10,
"linkStrength": 1,
"linkDistance": 250,
"scale": 1,
"close": true
}
+10
View File
@@ -0,0 +1,10 @@
{
"shouldConfirmBeforeCreate": true,
"weekStart": "locale",
"wordsPerDot": 250,
"showWeeklyNote": false,
"weeklyNoteFormat": "",
"weeklyNoteTemplate": "",
"weeklyNoteFolder": "",
"localeOverride": "system-default"
}
File diff suppressed because it is too large Load Diff
@@ -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"
}
File diff suppressed because one or more lines are too long
@@ -0,0 +1,11 @@
{
"id": "code-styler",
"name": "Code Styler",
"version": "1.1.7",
"minAppVersion": "0.15.0",
"description": "Style and customize codeblocks and inline code in both editing mode and reading mode.",
"author": "Mayuran Visakan",
"authorUrl": "https://github.com/mayurankv",
"fundingUrl": "https://www.buymeacoffee.com/mayurankv2",
"isDesktopOnly": false
}
@@ -0,0 +1 @@
{}
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,7 @@
{
"font_folder": ".obsidian/fonts/",
"font": "JetBrainsMono-Regular.ttf",
"force_mode": false,
"custom_css_mode": false,
"custom_css": ""
}
File diff suppressed because one or more lines are too long
@@ -0,0 +1,357 @@
/*
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: () => FontPlugin
});
module.exports = __toCommonJS(main_exports);
var import_obsidian = require("obsidian");
var DEFAULT_SETTINGS = {
font_folder: "",
font: "None",
force_mode: false,
custom_css_mode: false,
custom_css: ""
};
function get_default_css(font_family_name, css_class = ":root *") {
return `${css_class} {
--font-default: '${font_family_name}';
--default-font: '${font_family_name}';
--font-family-editor: '${font_family_name}';
--font-monospace-default: '${font_family_name}';
--font-interface-override: '${font_family_name}';
--font-text-override: '${font_family_name}';
--font-monospace-override: '${font_family_name}';
}
`;
}
function get_custom_css(font_family_name, css_class = ":root *") {
return `${css_class} * {
font-family: '${font_family_name}' !important;
}`;
}
function arrayBufferToBase64(buffer) {
let binary = "";
const bytes = new Uint8Array(buffer);
for (let i = 0; i < bytes.byteLength; i++) {
binary += String.fromCharCode(bytes[i]);
}
return btoa(binary);
}
function applyCss(css, css_id, appendMode = false) {
const existingStyle = document.getElementById(css_id);
if (existingStyle && appendMode) {
existingStyle.innerHTML += css;
} else {
const style = document.createElement("style");
style.innerHTML = css;
document.head.appendChild(style);
if (existingStyle) {
existingStyle.remove();
}
style.id = css_id;
}
}
var FontPlugin = class extends import_obsidian.Plugin {
constructor() {
super(...arguments);
this.config_dir = this.app.vault.configDir;
this.plugin_folder_path = `${this.config_dir}/plugins/custom-font-loader`;
}
async load_plugin() {
await this.loadSettings();
try {
const font_file_name = this.settings.font;
if (font_file_name && font_file_name.toLowerCase() != "none") {
if (font_file_name != "all") {
await this.process_and_load_font(font_file_name, false);
} else {
applyCss("", "custom_font_base64");
const files = await this.app.vault.adapter.list(
this.settings.font_folder
);
for (const file of files.files) {
const file_name = file.replace(
this.settings.font_folder,
""
);
await this.process_and_load_font(file_name, true);
}
}
} else {
applyCss("", "custom_font_base64");
applyCss("", "custom_font_general");
}
} catch (error) {
new import_obsidian.Notice(error);
}
}
async process_and_load_font(font_file_name, load_all_fonts) {
console.log("loading %s", font_file_name);
const css_font_path = `${this.plugin_folder_path}/${font_file_name.toLowerCase().replace(".", "_")}.css`;
if (!await this.app.vault.adapter.exists(css_font_path)) {
await this.convert_font_to_css(font_file_name, css_font_path);
} else {
await this.load_font(css_font_path, load_all_fonts);
await this.load_css(font_file_name);
}
}
async load_font(css_font_path, appendMode) {
const content = await this.app.vault.adapter.read(css_font_path);
applyCss(content, "custom_font_base64", appendMode);
}
async load_css(font_file_name) {
let css_string = "";
const font_family_name = font_file_name.split(".")[0].toLowerCase();
if (this.settings.custom_css_mode) {
css_string = this.settings.custom_css;
} else {
css_string = get_default_css(font_family_name);
}
if (this.settings.force_mode)
css_string += `
* {
font-family: '${font_family_name}' !important;
}
`;
applyCss(css_string, "custom_font_general");
}
async convert_font_to_css(font_file_name, css_font_path) {
new import_obsidian.Notice("Processing Font files");
const file = `${this.settings.font_folder}/${font_file_name}`;
const arrayBuffer = await this.app.vault.adapter.readBinary(file);
const base64 = arrayBufferToBase64(arrayBuffer);
const font_family_name = font_file_name.split(".")[0].toLowerCase();
const font_extension_name = font_file_name.split(".")[1].toLowerCase();
let css_type = "";
switch (font_extension_name) {
case "woff":
css_type = "font/woff";
break;
case "ttf":
css_type = "font/truetype";
break;
case "woff2":
css_type = "font/woff2";
break;
case "otf":
css_type = "font/opentype";
break;
default:
css_type = "font";
}
const base64_css = `@font-face{
font-family: '${font_family_name}';
src: url(data:${css_type};base64,${base64});
}`;
this.app.vault.adapter.write(css_font_path, base64_css);
console.log("saved font %s into %s", font_family_name, css_font_path);
console.log("Font CSS Saved into %s", css_font_path);
await this.load_plugin();
}
async onload() {
this.load_plugin();
this.addSettingTab(new FontSettingTab(this.app, this));
}
async onunload() {
applyCss("", "custom_font_base64");
applyCss("", "custom_font_general");
}
async loadSettings() {
this.settings = Object.assign(
{},
DEFAULT_SETTINGS,
await this.loadData()
);
}
async saveSettings() {
await this.saveData(this.settings);
}
};
var FontSettingTab = class extends import_obsidian.PluginSettingTab {
constructor(app, plugin) {
super(app, plugin);
this.plugin = plugin;
}
async display() {
const { containerEl } = this;
containerEl.empty();
const infoContainer = containerEl.createDiv();
infoContainer.setText(
"In Order to set the font, copy your font into fonts directory that you set"
);
new import_obsidian.Setting(containerEl).setName("Fonts Folder").setDesc("Folder to look for your custom fonts").addText((text) => {
text.onChange(async (value) => {
this.plugin.settings.font_folder = value;
await this.plugin.saveSettings();
await this.plugin.loadSettings();
});
if (this.plugin.settings.font_folder.trim() == "") {
this.plugin.settings.font_folder = `${this.app.vault.configDir}/fonts`;
}
if (!this.plugin.settings.font_folder.endsWith("/"))
this.plugin.settings.font_folder = this.plugin.settings.font_folder + "/";
text.setValue(this.plugin.settings.font_folder);
});
const font_folder_path = this.plugin.settings.font_folder;
const options = [{ name: "none", value: "None" }];
try {
if (!await this.app.vault.adapter.exists(font_folder_path)) {
await this.app.vault.adapter.mkdir(font_folder_path);
}
if (await this.app.vault.adapter.exists(font_folder_path)) {
const files = await this.app.vault.adapter.list(
font_folder_path
);
for (const file of files.files) {
const file_name = file.replace(font_folder_path, "");
if (file_name.startsWith("."))
continue;
options.push({ name: file_name, value: file_name });
}
}
options.push({ name: "all", value: "Multiple fonts" });
} catch (error) {
console.log(error);
}
new import_obsidian.Setting(containerEl).setName("Reload fonts from folder").setDesc(
"This button reloades from the folder you specified (it also creates the folder for you)"
).addButton((button) => {
button.setButtonText("Reload");
button.onClick((callback) => {
this.plugin.saveSettings();
this.plugin.load_plugin();
this.display();
});
});
this.containerEl.createDiv();
new import_obsidian.Setting(containerEl).setName("Font").setDesc(
`Choose font (If you can't see your fonts, make sure your fonts are in the folder you specified and hit reload.
Also if you choose multiple fonts option, we will load and process all fonts in the folder for you. In that Case, enable Custom CSS Mode)`
).addDropdown((dropdown) => {
for (const opt of options) {
dropdown.addOption(opt.name, opt.value);
}
dropdown.setValue(this.plugin.settings.font).onChange(async (value) => {
this.plugin.settings.font = value;
await this.plugin.saveSettings();
await this.plugin.load_plugin();
this.display();
});
});
if (this.plugin.settings.font.toLowerCase() != "none") {
new import_obsidian.Setting(containerEl).setName("Force Style").setDesc(
"This option should only be used if you have installed a community theme and normal mode doesn't work"
).addToggle((toggle) => {
toggle.setValue(this.plugin.settings.force_mode);
toggle.onChange(async (value) => {
this.plugin.settings.force_mode = value;
await this.plugin.saveSettings();
await this.plugin.load_plugin();
});
});
new import_obsidian.Setting(containerEl).setName("Custom CSS Mode").setDesc(
"If you want to apply a custom css style rather than default style, choose this."
).addToggle((toggle) => {
toggle.setValue(this.plugin.settings.custom_css_mode);
toggle.onChange(async (value) => {
if (this.plugin.settings.custom_css_mode == false) {
this.plugin.settings.custom_css = "";
}
this.plugin.settings.custom_css_mode = value;
this.plugin.saveSettings();
this.plugin.load_plugin();
this.display();
});
});
if (this.plugin.settings.custom_css_mode) {
new import_obsidian.Setting(containerEl).setName("Custom CSS Style").setDesc("Input your custom css style. Use the font filename without extension (in lowercase) as the font-family name. For example, if your font file is 'MyFont.ttf', use 'myfont' in your CSS.").addTextArea(async (text) => {
text.onChange(async (new_value) => {
this.plugin.settings.custom_css = new_value;
await this.plugin.saveSettings();
await this.plugin.load_plugin();
});
text.setDisabled(!this.plugin.settings.custom_css_mode);
if (this.plugin.settings.custom_css == "") {
let font_family_name = "";
try {
font_family_name = this.plugin.settings.font.split(".")[0].toLowerCase();
} catch (error) {
console.log(error);
}
if (font_family_name == "all") {
if (await this.app.vault.adapter.exists(
font_folder_path
)) {
const files = await this.app.vault.adapter.list(
font_folder_path
);
let final_str = "";
for (const file of files.files) {
const file_name = file.split("/")[2];
const font_family = file_name.split(".")[0].toLowerCase();
final_str += "\n" + get_custom_css(
font_family,
"." + font_family
);
}
text.setValue(final_str);
}
} else {
const template = `/* Example CSS for your font: ${font_family_name} */
/* Apply to all text */
:root * {
--font-default: '${font_family_name}';
--default-font: '${font_family_name}';
--font-family-editor: '${font_family_name}';
--font-interface-override: '${font_family_name}';
--font-text-override: '${font_family_name}';
}
/* Example: Apply to custom CSS class */
.custom-font * {
font-family: '${font_family_name}' !important;
}
/* Example: Apply to specific elements only */
.custom-font h1, .custom-font h2, .custom-font h3 {
font-family: '${font_family_name}' !important;
}`;
text.setValue(template);
}
} else {
text.setValue(this.plugin.settings.custom_css);
}
text.onChanged();
text.inputEl.style.width = "100%";
text.inputEl.style.height = "100px";
});
}
}
}
};
/* nosourcemap */
@@ -0,0 +1,10 @@
{
"id": "custom-font-loader",
"name": "Custom Font Loader",
"version": "1.8.0",
"minAppVersion": "0.15.0",
"description": "Customize your Obsidian vault with any font you want (+ Support for Android and IOS)",
"author": "Amir Pourmand",
"authorUrl": "https://amirpourmand.ir",
"isDesktopOnly": false
}
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,10 @@
{
"id": "obsidian-note-autocreator",
"name": "Note Auto Creator",
"version": "1.6.0",
"minAppVersion": "0.14.2",
"description": "Automatically create notes when links are created to them.",
"author": "Simon T. Clement",
"authorUrl": "https://github.com/SimonTC",
"isDesktopOnly": false
}
@@ -0,0 +1,3 @@
.setting-item-control.setting-warning input {
border-color: yellow;
}
+28
View File
@@ -0,0 +1,28 @@
{
"types": {
"aliases": "aliases",
"cssclasses": "multitext",
"tags": "tags",
"offGlobalCooldown": "checkbox",
"cooldown": "number",
"range": "number",
"mana": "number",
"heal": "number",
"damage": "number",
"shield": "number",
"order": "number",
"completed": "checkbox",
"test": "multitext",
"priority": "number",
"swiftReprievalChance": "number",
"gdc": "number",
"duration": "number",
"damageReduction": "number",
"healingTickTime": "number",
"healingDuration": "number",
"parryChance": "number",
"damageTickTime": "number",
"isToggle": "checkbox",
"manaUpkeepTick": "number"
}
}
+268
View File
@@ -0,0 +1,268 @@
{
"main": {
"id": "123c1c967ef84112",
"type": "split",
"children": [
{
"id": "eee9a8f09755138c",
"type": "tabs",
"children": [
{
"id": "48fb883427ac2254",
"type": "leaf",
"pinned": true,
"state": {
"type": "markdown",
"state": {
"file": "Hotkeys.md",
"mode": "source",
"source": false
},
"pinned": true,
"icon": "lucide-file",
"title": "Hotkeys"
}
},
{
"id": "2cb99dc077607f1c",
"type": "leaf",
"pinned": true,
"state": {
"type": "bases",
"state": {
"file": "_.base",
"viewName": "Table"
},
"pinned": true,
"icon": "lucide-table",
"title": "_"
}
},
{
"id": "52ff33be5ea0cfcf",
"type": "leaf",
"state": {
"type": "canvas",
"state": {
"file": "_Rime.canvas",
"viewState": {
"x": -97,
"y": -231.5,
"zoom": 0
}
},
"icon": "lucide-layout-dashboard",
"title": "_Rime"
}
}
],
"currentTab": 2
}
],
"direction": "vertical"
},
"left": {
"id": "57e827c773aec57f",
"type": "split",
"children": [
{
"id": "52c3e62ba4e159ba",
"type": "tabs",
"children": [
{
"id": "36a9a41f7ec6aaa9",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {
"sortOrder": "alphabetical",
"autoReveal": false
},
"icon": "lucide-folder-closed",
"title": "Files"
}
},
{
"id": "426d7da5f7a4ee03",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical"
},
"icon": "lucide-search",
"title": "Search"
}
},
{
"id": "2ece49e1b5f66483",
"type": "leaf",
"state": {
"type": "bookmarks",
"state": {},
"icon": "lucide-bookmark",
"title": "Bookmarks"
}
}
]
}
],
"direction": "horizontal",
"width": 200
},
"right": {
"id": "c0d8dbfd11fbf7e2",
"type": "split",
"children": [
{
"id": "416badf900458eee",
"type": "tabs",
"children": [
{
"id": "194961464e209b3d",
"type": "leaf",
"state": {
"type": "backlink",
"state": {
"file": "Plugins.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-coming-in",
"title": "Backlinks for Plugins"
}
},
{
"id": "01218f71b66e4cf8",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"file": "Plugins.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-going-out",
"title": "Outgoing links from Plugins"
}
},
{
"id": "ed094eaf83e06e81",
"type": "leaf",
"state": {
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": true,
"showSearch": false,
"searchQuery": ""
},
"icon": "lucide-tags",
"title": "Tags"
}
},
{
"id": "2884c742c9d598cc",
"type": "leaf",
"state": {
"type": "outline",
"state": {
"file": "Plugins.md",
"followCursor": false,
"showSearch": false,
"searchQuery": ""
},
"icon": "lucide-list",
"title": "Outline of Plugins"
}
},
{
"id": "b20b4dcf5a3cbdcc",
"type": "leaf",
"state": {
"type": "calendar",
"state": {},
"icon": "lucide-ghost",
"title": "calendar"
}
}
]
}
],
"direction": "horizontal",
"width": 300,
"collapsed": true
},
"left-ribbon": {
"hiddenItems": {
"switcher:Open quick switcher": false,
"graph:Open graph view": false,
"canvas:Create new canvas": false,
"daily-notes:Open today's daily note": false,
"templates:Insert template": false,
"command-palette:Open command palette": false,
"bases:Create new base": false
}
},
"active": "52ff33be5ea0cfcf",
"lastOpenFiles": [
"_.base",
"Throw Book.md",
"Circle of Light.md",
"_Rime.canvas",
"Frost Bolt.md",
"F.md",
"G.md",
"_.canvas",
"_Rotation.canvas",
"_Welcome.md",
"Frost Bolt Icon.png",
"!.md",
"1.md",
"3.md",
"5.md",
"Pasted image 20260224121329.png",
"Lightshaper's Ward.md",
"Pasted image 20260223235252.png",
"Pasted image 20260223235229.png",
"Pasted image 20260223234651.png",
"Pasted image 20260223234634.png",
"Remove Magic.md",
"Pasted image 20260223234558.png",
"Pasted image 20260223234556.png",
"Pasted image 20260223234541.png",
"Avatar of Light.md",
"Rune of Renewal.md",
"Luminous Barrier.md",
"Images/Greater Heal.png",
"Videos/Vigour/Contender/7/Ransack of Drakheim Contender 7.md",
"Videos/Vigour/Contender/7/Ransack of Drakheim Contender 7.mp4",
"Hotkeys.md",
"Greater Heal.md",
"Mouse 3.md",
"Mouse 1.md",
"Mouse 2.md",
"Dawnflare.md",
"Dawnbreaker Orb.md",
"Untitled 1.md",
"Images",
"Untitled.md",
"Videos/Vigour/Contender/3/Everdawn Grove Contender 3.mp4",
"Videos/Vigour/Contender/3",
"Videos/Vigour/Contender/4",
"Videos/Vigour/Contender/1/Sailors Abyss Contender 1.mp4",
"Videos/Vigour/Contender/7",
"Videos/Vigour/Contender/4/Empyrean Sands Contender 4.mp4",
"Videos/Vigour/Contender/1"
]
}
+268
View File
@@ -0,0 +1,268 @@
{
"main": {
"id": "123c1c967ef84112",
"type": "split",
"children": [
{
"id": "eee9a8f09755138c",
"type": "tabs",
"children": [
{
"id": "48fb883427ac2254",
"type": "leaf",
"pinned": true,
"state": {
"type": "markdown",
"state": {
"file": "Hotkeys.md",
"mode": "source",
"source": false
},
"pinned": true,
"icon": "lucide-file",
"title": "Hotkeys"
}
},
{
"id": "2cb99dc077607f1c",
"type": "leaf",
"pinned": true,
"state": {
"type": "bases",
"state": {
"file": "_.base",
"viewName": "Table"
},
"pinned": true,
"icon": "lucide-table",
"title": "_"
}
},
{
"id": "52ff33be5ea0cfcf",
"type": "leaf",
"state": {
"type": "canvas",
"state": {
"file": "_Rime.canvas",
"viewState": {
"x": -97,
"y": -231.5,
"zoom": 0
}
},
"icon": "lucide-layout-dashboard",
"title": "_Rime"
}
}
],
"currentTab": 2
}
],
"direction": "vertical"
},
"left": {
"id": "57e827c773aec57f",
"type": "split",
"children": [
{
"id": "52c3e62ba4e159ba",
"type": "tabs",
"children": [
{
"id": "36a9a41f7ec6aaa9",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {
"sortOrder": "alphabetical",
"autoReveal": false
},
"icon": "lucide-folder-closed",
"title": "Files"
}
},
{
"id": "426d7da5f7a4ee03",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical"
},
"icon": "lucide-search",
"title": "Search"
}
},
{
"id": "2ece49e1b5f66483",
"type": "leaf",
"state": {
"type": "bookmarks",
"state": {},
"icon": "lucide-bookmark",
"title": "Bookmarks"
}
}
]
}
],
"direction": "horizontal",
"width": 200
},
"right": {
"id": "c0d8dbfd11fbf7e2",
"type": "split",
"children": [
{
"id": "416badf900458eee",
"type": "tabs",
"children": [
{
"id": "194961464e209b3d",
"type": "leaf",
"state": {
"type": "backlink",
"state": {
"file": "Plugins.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-coming-in",
"title": "Backlinks for Plugins"
}
},
{
"id": "01218f71b66e4cf8",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"file": "Plugins.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-going-out",
"title": "Outgoing links from Plugins"
}
},
{
"id": "ed094eaf83e06e81",
"type": "leaf",
"state": {
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": true,
"showSearch": false,
"searchQuery": ""
},
"icon": "lucide-tags",
"title": "Tags"
}
},
{
"id": "2884c742c9d598cc",
"type": "leaf",
"state": {
"type": "outline",
"state": {
"file": "Plugins.md",
"followCursor": false,
"showSearch": false,
"searchQuery": ""
},
"icon": "lucide-list",
"title": "Outline of Plugins"
}
},
{
"id": "b20b4dcf5a3cbdcc",
"type": "leaf",
"state": {
"type": "calendar",
"state": {},
"icon": "lucide-ghost",
"title": "calendar"
}
}
]
}
],
"direction": "horizontal",
"width": 300,
"collapsed": true
},
"left-ribbon": {
"hiddenItems": {
"switcher:Open quick switcher": false,
"graph:Open graph view": false,
"canvas:Create new canvas": false,
"daily-notes:Open today's daily note": false,
"templates:Insert template": false,
"command-palette:Open command palette": false,
"bases:Create new base": false
}
},
"active": "52ff33be5ea0cfcf",
"lastOpenFiles": [
"_.base",
"Throw Book.md",
"Circle of Light.md",
"_Rime.canvas",
"Frost Bolt.md",
"F.md",
"G.md",
"_.canvas",
"_Rotation.canvas",
"_Welcome.md",
"Frost Bolt Icon.png",
"!.md",
"1.md",
"3.md",
"5.md",
"Pasted image 20260224121329.png",
"Lightshaper's Ward.md",
"Pasted image 20260223235252.png",
"Pasted image 20260223235229.png",
"Pasted image 20260223234651.png",
"Pasted image 20260223234634.png",
"Remove Magic.md",
"Pasted image 20260223234558.png",
"Pasted image 20260223234556.png",
"Pasted image 20260223234541.png",
"Avatar of Light.md",
"Rune of Renewal.md",
"Luminous Barrier.md",
"Images/Greater Heal.png",
"Videos/Vigour/Contender/7/Ransack of Drakheim Contender 7.md",
"Videos/Vigour/Contender/7/Ransack of Drakheim Contender 7.mp4",
"Hotkeys.md",
"Greater Heal.md",
"Mouse 3.md",
"Mouse 1.md",
"Mouse 2.md",
"Dawnflare.md",
"Dawnbreaker Orb.md",
"Untitled 1.md",
"Images",
"Untitled.md",
"Videos/Vigour/Contender/3/Everdawn Grove Contender 3.mp4",
"Videos/Vigour/Contender/3",
"Videos/Vigour/Contender/4",
"Videos/Vigour/Contender/1/Sailors Abyss Contender 1.mp4",
"Videos/Vigour/Contender/7",
"Videos/Vigour/Contender/4/Empyrean Sands Contender 4.mp4",
"Videos/Vigour/Contender/1"
]
}
+393
View File
@@ -0,0 +1,393 @@
{
"main": {
"id": "123c1c967ef84112",
"type": "split",
"children": [
{
"id": "eee9a8f09755138c",
"type": "tabs",
"children": [
{
"id": "48fb883427ac2254",
"type": "leaf",
"pinned": true,
"state": {
"type": "markdown",
"state": {
"file": "Hotkeys.md",
"mode": "source",
"source": false
},
"pinned": true,
"icon": "lucide-file",
"title": "Hotkeys"
}
},
{
"id": "2cb99dc077607f1c",
"type": "leaf",
"pinned": true,
"state": {
"type": "bases",
"state": {
"file": "_.base",
"viewName": "Table"
},
"pinned": true,
"icon": "lucide-table",
"title": "_"
}
},
{
"id": "600fcce15db2f675",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Lightshaper's Ward.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Lightshaper's Ward"
}
},
{
"id": "2b6d57abd4c41d64",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Throw Book.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Throw Book"
}
},
{
"id": "857ae8cfa616b7ae",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Remove Magic.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Remove Magic"
}
},
{
"id": "a94ab811735c34fd",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Avatar of Light.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Avatar of Light"
}
},
{
"id": "4a132e2ce1e8fbe2",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Rune of Renewal.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Rune of Renewal"
}
},
{
"id": "d4b4c8b11d3ae43f",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Luminous Barrier.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Luminous Barrier"
}
},
{
"id": "dee4f293b0bcbb50",
"type": "leaf",
"state": {
"type": "image",
"state": {
"file": "Images/Greater Heal.png"
},
"icon": "lucide-image",
"title": "Greater Heal"
}
},
{
"id": "ff2887d57c85ebe9",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Circle of Light.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Circle of Light"
}
},
{
"id": "d067cf3e62e92dd9",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Videos/Vigour/Contender/7/Ransack of Drakheim Contender 7.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Ransack of Drakheim Contender 7"
}
},
{
"id": "dd139ac1e934e76c",
"type": "leaf",
"state": {
"type": "canvas",
"state": {
"file": "_.canvas",
"viewState": {
"x": -50,
"y": 197.5,
"zoom": -0.7361780968535913
}
},
"icon": "lucide-layout-dashboard",
"title": "_"
}
}
],
"currentTab": 11
}
],
"direction": "vertical"
},
"left": {
"id": "57e827c773aec57f",
"type": "split",
"children": [
{
"id": "52c3e62ba4e159ba",
"type": "tabs",
"children": [
{
"id": "36a9a41f7ec6aaa9",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {
"sortOrder": "alphabetical",
"autoReveal": false
},
"icon": "lucide-folder-closed",
"title": "Files"
}
},
{
"id": "426d7da5f7a4ee03",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical"
},
"icon": "lucide-search",
"title": "Search"
}
},
{
"id": "2ece49e1b5f66483",
"type": "leaf",
"state": {
"type": "bookmarks",
"state": {},
"icon": "lucide-bookmark",
"title": "Bookmarks"
}
}
]
}
],
"direction": "horizontal",
"width": 410.5
},
"right": {
"id": "c0d8dbfd11fbf7e2",
"type": "split",
"children": [
{
"id": "416badf900458eee",
"type": "tabs",
"children": [
{
"id": "194961464e209b3d",
"type": "leaf",
"state": {
"type": "backlink",
"state": {
"file": "Plugins.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-coming-in",
"title": "Backlinks for Plugins"
}
},
{
"id": "01218f71b66e4cf8",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"file": "Plugins.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-going-out",
"title": "Outgoing links from Plugins"
}
},
{
"id": "ed094eaf83e06e81",
"type": "leaf",
"state": {
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": true,
"showSearch": false,
"searchQuery": ""
},
"icon": "lucide-tags",
"title": "Tags"
}
},
{
"id": "2884c742c9d598cc",
"type": "leaf",
"state": {
"type": "outline",
"state": {
"file": "Plugins.md",
"followCursor": false,
"showSearch": false,
"searchQuery": ""
},
"icon": "lucide-list",
"title": "Outline of Plugins"
}
},
{
"id": "b20b4dcf5a3cbdcc",
"type": "leaf",
"state": {
"type": "calendar",
"state": {},
"icon": "lucide-ghost",
"title": "calendar"
}
}
]
}
],
"direction": "horizontal",
"width": 300,
"collapsed": true
},
"left-ribbon": {
"hiddenItems": {
"switcher:Open quick switcher": false,
"graph:Open graph view": false,
"canvas:Create new canvas": false,
"daily-notes:Open today's daily note": false,
"templates:Insert template": false,
"command-palette:Open command palette": false,
"bases:Create new base": false
}
},
"active": "dd139ac1e934e76c",
"lastOpenFiles": [
"Flight of the Navir.md",
"Glacial Blast.md",
"Freezing Torrent.md",
"Cold Snap.md",
"Frost Bolt.md",
"_Rime.canvas",
"_.base",
"_.canvas",
"!.md",
"_Welcome.md",
"1.md",
"3.md",
"5.md",
"Rotation.canvas",
"Pasted image 20260224121329.png",
"Lightshaper's Ward.md",
"Pasted image 20260223235252.png",
"Pasted image 20260223235229.png",
"Throw Book.md",
"Pasted image 20260223234651.png",
"Pasted image 20260223234634.png",
"Remove Magic.md",
"Pasted image 20260223234558.png",
"Pasted image 20260223234556.png",
"Pasted image 20260223234541.png",
"Avatar of Light.md",
"Rune of Renewal.md",
"Luminous Barrier.md",
"Images/Greater Heal.png",
"Circle of Light.md",
"Videos/Vigour/Contender/7/Ransack of Drakheim Contender 7.md",
"Videos/Vigour/Contender/7/Ransack of Drakheim Contender 7.mp4",
"Pasted image 20260223234256.png",
"Hotkeys.md",
"Greater Heal.md",
"Mouse 3.md",
"Mouse 1.md",
"Mouse 2.md",
"Dawnflare.md",
"Dawnbreaker Orb.md",
"Untitled 1.md",
"Images",
"Videos/Vigour/Contender/3/Everdawn Grove Contender 3.mp4",
"Videos/Vigour/Contender/3",
"Videos/Vigour/Contender/4",
"Videos/Vigour/Contender/1/Sailors Abyss Contender 1.mp4",
"Videos/Vigour/Contender/7",
"Videos/Vigour/Contender/4/Empyrean Sands Contender 4.mp4",
"Videos/Vigour/Contender/1"
]
}
+393
View File
@@ -0,0 +1,393 @@
{
"main": {
"id": "123c1c967ef84112",
"type": "split",
"children": [
{
"id": "eee9a8f09755138c",
"type": "tabs",
"children": [
{
"id": "48fb883427ac2254",
"type": "leaf",
"pinned": true,
"state": {
"type": "markdown",
"state": {
"file": "Hotkeys.md",
"mode": "source",
"source": false
},
"pinned": true,
"icon": "lucide-file",
"title": "Hotkeys"
}
},
{
"id": "2cb99dc077607f1c",
"type": "leaf",
"pinned": true,
"state": {
"type": "bases",
"state": {
"file": "_.base",
"viewName": "Table"
},
"pinned": true,
"icon": "lucide-table",
"title": "_"
}
},
{
"id": "600fcce15db2f675",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Lightshaper's Ward.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Lightshaper's Ward"
}
},
{
"id": "2b6d57abd4c41d64",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Throw Book.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Throw Book"
}
},
{
"id": "857ae8cfa616b7ae",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Remove Magic.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Remove Magic"
}
},
{
"id": "a94ab811735c34fd",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Avatar of Light.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Avatar of Light"
}
},
{
"id": "4a132e2ce1e8fbe2",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Rune of Renewal.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Rune of Renewal"
}
},
{
"id": "d4b4c8b11d3ae43f",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Luminous Barrier.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Luminous Barrier"
}
},
{
"id": "dee4f293b0bcbb50",
"type": "leaf",
"state": {
"type": "image",
"state": {
"file": "Images/Greater Heal.png"
},
"icon": "lucide-image",
"title": "Greater Heal"
}
},
{
"id": "ff2887d57c85ebe9",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Circle of Light.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Circle of Light"
}
},
{
"id": "d067cf3e62e92dd9",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Videos/Vigour/Contender/7/Ransack of Drakheim Contender 7.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Ransack of Drakheim Contender 7"
}
},
{
"id": "dd139ac1e934e76c",
"type": "leaf",
"state": {
"type": "canvas",
"state": {
"file": "_Rime.canvas",
"viewState": {
"x": 235.94421772640501,
"y": -80.40922874971731,
"zoom": -1.4487407524978124
}
},
"icon": "lucide-layout-dashboard",
"title": "_Rime"
}
}
],
"currentTab": 11
}
],
"direction": "vertical"
},
"left": {
"id": "57e827c773aec57f",
"type": "split",
"children": [
{
"id": "52c3e62ba4e159ba",
"type": "tabs",
"children": [
{
"id": "36a9a41f7ec6aaa9",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {
"sortOrder": "alphabetical",
"autoReveal": false
},
"icon": "lucide-folder-closed",
"title": "Files"
}
},
{
"id": "426d7da5f7a4ee03",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical"
},
"icon": "lucide-search",
"title": "Search"
}
},
{
"id": "2ece49e1b5f66483",
"type": "leaf",
"state": {
"type": "bookmarks",
"state": {},
"icon": "lucide-bookmark",
"title": "Bookmarks"
}
}
]
}
],
"direction": "horizontal",
"width": 410.5
},
"right": {
"id": "c0d8dbfd11fbf7e2",
"type": "split",
"children": [
{
"id": "416badf900458eee",
"type": "tabs",
"children": [
{
"id": "194961464e209b3d",
"type": "leaf",
"state": {
"type": "backlink",
"state": {
"file": "Plugins.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-coming-in",
"title": "Backlinks for Plugins"
}
},
{
"id": "01218f71b66e4cf8",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"file": "Plugins.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-going-out",
"title": "Outgoing links from Plugins"
}
},
{
"id": "ed094eaf83e06e81",
"type": "leaf",
"state": {
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": true,
"showSearch": false,
"searchQuery": ""
},
"icon": "lucide-tags",
"title": "Tags"
}
},
{
"id": "2884c742c9d598cc",
"type": "leaf",
"state": {
"type": "outline",
"state": {
"file": "Plugins.md",
"followCursor": false,
"showSearch": false,
"searchQuery": ""
},
"icon": "lucide-list",
"title": "Outline of Plugins"
}
},
{
"id": "b20b4dcf5a3cbdcc",
"type": "leaf",
"state": {
"type": "calendar",
"state": {},
"icon": "lucide-ghost",
"title": "calendar"
}
}
]
}
],
"direction": "horizontal",
"width": 300,
"collapsed": true
},
"left-ribbon": {
"hiddenItems": {
"switcher:Open quick switcher": false,
"graph:Open graph view": false,
"canvas:Create new canvas": false,
"daily-notes:Open today's daily note": false,
"templates:Insert template": false,
"command-palette:Open command palette": false,
"bases:Create new base": false
}
},
"active": "dd139ac1e934e76c",
"lastOpenFiles": [
"Pasted image 20260227215952.png",
"_.canvas",
"Flight of the Navir.md",
"Glacial Blast.md",
"Freezing Torrent.md",
"Cold Snap.md",
"Frost Bolt.md",
"_Rime.canvas",
"_.base",
"!.md",
"_Welcome.md",
"1.md",
"3.md",
"5.md",
"Rotation.canvas",
"Pasted image 20260224121329.png",
"Lightshaper's Ward.md",
"Pasted image 20260223235252.png",
"Pasted image 20260223235229.png",
"Throw Book.md",
"Pasted image 20260223234651.png",
"Pasted image 20260223234634.png",
"Remove Magic.md",
"Pasted image 20260223234558.png",
"Pasted image 20260223234556.png",
"Pasted image 20260223234541.png",
"Avatar of Light.md",
"Rune of Renewal.md",
"Luminous Barrier.md",
"Images/Greater Heal.png",
"Circle of Light.md",
"Videos/Vigour/Contender/7/Ransack of Drakheim Contender 7.md",
"Videos/Vigour/Contender/7/Ransack of Drakheim Contender 7.mp4",
"Pasted image 20260223234256.png",
"Hotkeys.md",
"Greater Heal.md",
"Mouse 3.md",
"Mouse 1.md",
"Mouse 2.md",
"Dawnflare.md",
"Dawnbreaker Orb.md",
"Images",
"Videos/Vigour/Contender/3/Everdawn Grove Contender 3.mp4",
"Videos/Vigour/Contender/3",
"Videos/Vigour/Contender/4",
"Videos/Vigour/Contender/1/Sailors Abyss Contender 1.mp4",
"Videos/Vigour/Contender/7",
"Videos/Vigour/Contender/4/Empyrean Sands Contender 4.mp4",
"Videos/Vigour/Contender/1"
]
}
+393
View File
@@ -0,0 +1,393 @@
{
"main": {
"id": "123c1c967ef84112",
"type": "split",
"children": [
{
"id": "eee9a8f09755138c",
"type": "tabs",
"children": [
{
"id": "48fb883427ac2254",
"type": "leaf",
"pinned": true,
"state": {
"type": "markdown",
"state": {
"file": "Hotkeys.md",
"mode": "source",
"source": false
},
"pinned": true,
"icon": "lucide-file",
"title": "Hotkeys"
}
},
{
"id": "2cb99dc077607f1c",
"type": "leaf",
"pinned": true,
"state": {
"type": "bases",
"state": {
"file": "_.base",
"viewName": "Table"
},
"pinned": true,
"icon": "lucide-table",
"title": "_"
}
},
{
"id": "600fcce15db2f675",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Lightshaper's Ward.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Lightshaper's Ward"
}
},
{
"id": "2b6d57abd4c41d64",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Throw Book.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Throw Book"
}
},
{
"id": "857ae8cfa616b7ae",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Remove Magic.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Remove Magic"
}
},
{
"id": "a94ab811735c34fd",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Avatar of Light.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Avatar of Light"
}
},
{
"id": "4a132e2ce1e8fbe2",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Rune of Renewal.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Rune of Renewal"
}
},
{
"id": "d4b4c8b11d3ae43f",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Luminous Barrier.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Luminous Barrier"
}
},
{
"id": "dee4f293b0bcbb50",
"type": "leaf",
"state": {
"type": "image",
"state": {
"file": "Images/Greater Heal.png"
},
"icon": "lucide-image",
"title": "Greater Heal"
}
},
{
"id": "ff2887d57c85ebe9",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Circle of Light.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Circle of Light"
}
},
{
"id": "d067cf3e62e92dd9",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Videos/Vigour/Contender/7/Ransack of Drakheim Contender 7.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Ransack of Drakheim Contender 7"
}
},
{
"id": "dd139ac1e934e76c",
"type": "leaf",
"state": {
"type": "canvas",
"state": {
"file": "_Rime.canvas",
"viewState": {
"x": 235.94421772640501,
"y": -1357.334129551798,
"zoom": -1.4487407524978124
}
},
"icon": "lucide-layout-dashboard",
"title": "_Rime"
}
}
],
"currentTab": 11
}
],
"direction": "vertical"
},
"left": {
"id": "57e827c773aec57f",
"type": "split",
"children": [
{
"id": "52c3e62ba4e159ba",
"type": "tabs",
"children": [
{
"id": "36a9a41f7ec6aaa9",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {
"sortOrder": "alphabetical",
"autoReveal": false
},
"icon": "lucide-folder-closed",
"title": "Files"
}
},
{
"id": "426d7da5f7a4ee03",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical"
},
"icon": "lucide-search",
"title": "Search"
}
},
{
"id": "2ece49e1b5f66483",
"type": "leaf",
"state": {
"type": "bookmarks",
"state": {},
"icon": "lucide-bookmark",
"title": "Bookmarks"
}
}
]
}
],
"direction": "horizontal",
"width": 410.5
},
"right": {
"id": "c0d8dbfd11fbf7e2",
"type": "split",
"children": [
{
"id": "416badf900458eee",
"type": "tabs",
"children": [
{
"id": "194961464e209b3d",
"type": "leaf",
"state": {
"type": "backlink",
"state": {
"file": "Plugins.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-coming-in",
"title": "Backlinks for Plugins"
}
},
{
"id": "01218f71b66e4cf8",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"file": "Plugins.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-going-out",
"title": "Outgoing links from Plugins"
}
},
{
"id": "ed094eaf83e06e81",
"type": "leaf",
"state": {
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": true,
"showSearch": false,
"searchQuery": ""
},
"icon": "lucide-tags",
"title": "Tags"
}
},
{
"id": "2884c742c9d598cc",
"type": "leaf",
"state": {
"type": "outline",
"state": {
"file": "Plugins.md",
"followCursor": false,
"showSearch": false,
"searchQuery": ""
},
"icon": "lucide-list",
"title": "Outline of Plugins"
}
},
{
"id": "b20b4dcf5a3cbdcc",
"type": "leaf",
"state": {
"type": "calendar",
"state": {},
"icon": "lucide-ghost",
"title": "calendar"
}
}
]
}
],
"direction": "horizontal",
"width": 300,
"collapsed": true
},
"left-ribbon": {
"hiddenItems": {
"switcher:Open quick switcher": false,
"graph:Open graph view": false,
"canvas:Create new canvas": false,
"daily-notes:Open today's daily note": false,
"templates:Insert template": false,
"command-palette:Open command palette": false,
"bases:Create new base": false
}
},
"active": "dd139ac1e934e76c",
"lastOpenFiles": [
"Pasted image 20260227215952.png",
"_.canvas",
"Flight of the Navir.md",
"Glacial Blast.md",
"Freezing Torrent.md",
"Cold Snap.md",
"Frost Bolt.md",
"_Rime.canvas",
"_.base",
"!.md",
"_Welcome.md",
"1.md",
"3.md",
"5.md",
"Rotation.canvas",
"Pasted image 20260224121329.png",
"Lightshaper's Ward.md",
"Pasted image 20260223235252.png",
"Pasted image 20260223235229.png",
"Throw Book.md",
"Pasted image 20260223234651.png",
"Pasted image 20260223234634.png",
"Remove Magic.md",
"Pasted image 20260223234558.png",
"Pasted image 20260223234556.png",
"Pasted image 20260223234541.png",
"Avatar of Light.md",
"Rune of Renewal.md",
"Luminous Barrier.md",
"Images/Greater Heal.png",
"Circle of Light.md",
"Videos/Vigour/Contender/7/Ransack of Drakheim Contender 7.md",
"Videos/Vigour/Contender/7/Ransack of Drakheim Contender 7.mp4",
"Pasted image 20260223234256.png",
"Hotkeys.md",
"Greater Heal.md",
"Mouse 3.md",
"Mouse 1.md",
"Mouse 2.md",
"Dawnflare.md",
"Dawnbreaker Orb.md",
"Images",
"Videos/Vigour/Contender/3/Everdawn Grove Contender 3.mp4",
"Videos/Vigour/Contender/3",
"Videos/Vigour/Contender/4",
"Videos/Vigour/Contender/1/Sailors Abyss Contender 1.mp4",
"Videos/Vigour/Contender/7",
"Videos/Vigour/Contender/4/Empyrean Sands Contender 4.mp4",
"Videos/Vigour/Contender/1"
]
}
+312
View File
@@ -0,0 +1,312 @@
{
"main": {
"id": "a1daa5cfc1ad024d",
"type": "split",
"children": [
{
"id": "a6d68f6d6a50ba09",
"type": "tabs",
"dimension": 80.32994923857868,
"children": [
{
"id": "4ae458cb7f768cb9",
"type": "leaf",
"state": {
"type": "canvas",
"state": {
"file": "_Keyboard.canvas",
"viewState": {
"x": 1188.5882847634182,
"y": 1015.5547971965063,
"zoom": -1.2720080268176461
}
},
"icon": "lucide-layout-dashboard",
"title": "_Keyboard"
}
},
{
"id": "16bac99d148a0e4b",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Xavian/Aura of Solace.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Aura of Solace"
}
},
{
"id": "28bf3864eae8c9e4",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Xavian/Omnistrike.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Omnistrike"
}
},
{
"id": "90f63ab1cd502da2",
"type": "leaf",
"pinned": true,
"state": {
"type": "bases",
"state": {
"file": "Xavian/_Base.base",
"viewName": "Table"
},
"pinned": true,
"icon": "lucide-table",
"title": "_Base"
}
}
],
"currentTab": 3
},
{
"id": "09d7b7dcffcb1b49",
"type": "tabs",
"dimension": 19.670050761421322,
"children": [
{
"id": "cf07e32fae8559d4",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Xavian/Sky Crash.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Sky Crash"
}
}
]
}
],
"direction": "vertical"
},
"left": {
"id": "4da895b26dde5b73",
"type": "split",
"children": [
{
"id": "6d1287c5bc63eedf",
"type": "tabs",
"children": [
{
"id": "da7d887e59a6c0a8",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {
"sortOrder": "alphabetical",
"autoReveal": false
},
"icon": "lucide-folder-closed",
"title": "Files"
}
},
{
"id": "81b46fbc9e3374b9",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "Frost Bolt Icon",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical"
},
"icon": "lucide-search",
"title": "Search"
}
},
{
"id": "13018fcf0b102c84",
"type": "leaf",
"state": {
"type": "bookmarks",
"state": {},
"icon": "lucide-bookmark",
"title": "Bookmarks"
}
}
]
}
],
"direction": "horizontal",
"width": 300
},
"right": {
"id": "4829a3e519db0862",
"type": "split",
"children": [
{
"id": "234b746ea890f544",
"type": "tabs",
"children": [
{
"id": "da3e82fdcb6ccdd0",
"type": "leaf",
"state": {
"type": "backlink",
"state": {
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-coming-in",
"title": "Backlinks"
}
},
{
"id": "0eeabbc1fc4e98c6",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"linksCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-going-out",
"title": "Outgoing links"
}
},
{
"id": "68f39d36d412a04a",
"type": "leaf",
"state": {
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": true,
"showSearch": false,
"searchQuery": ""
},
"icon": "lucide-tags",
"title": "Tags"
}
},
{
"id": "e4d421251e09a5a8",
"type": "leaf",
"state": {
"type": "all-properties",
"state": {
"sortOrder": "frequency",
"showSearch": false,
"searchQuery": ""
},
"icon": "lucide-ghost",
"title": "all-properties"
}
},
{
"id": "b09df9114f0aab0d",
"type": "leaf",
"state": {
"type": "outline",
"state": {
"followCursor": false,
"showSearch": false,
"searchQuery": ""
},
"icon": "lucide-list",
"title": "Outline"
}
},
{
"id": "71bafac16327d945",
"type": "leaf",
"state": {
"type": "calendar",
"state": {},
"icon": "calendar-with-checkmark",
"title": "Calendar"
}
}
]
}
],
"direction": "horizontal",
"width": 300,
"collapsed": true
},
"left-ribbon": {
"hiddenItems": {
"switcher:Open quick switcher": false,
"graph:Open graph view": false,
"canvas:Create new canvas": false,
"daily-notes:Open today's daily note": false,
"templates:Insert template": false,
"command-palette:Open command palette": false,
"bases:Create new base": false
}
},
"active": "cf07e32fae8559d4",
"lastOpenFiles": [
"Xavian/_Base.base",
"Xavian/Solar Shield.md",
"Xavian/Omega Reprieval.md",
"Xavian/_Keyboard 2.canvas",
"Xavian/Taunt.md",
"Xavian/Sun Struck.md",
"Xavian/Xavian.md",
"Xavian/Sky Crash.md",
"Xavian/Brilliant Flare.md",
"Xavian/Brilliant Flash.md",
"Xavian/Swift Reprival.md",
"Xavian/Shinning Halo.md",
"Xavian/Blind.md",
"Xavian/Ruptured Dawn.md",
"Xavian/Aura of Solace.md",
"Xavian/Decree of the Sun.md",
"Xavian/Interupt.md",
"Xavian/Solar Blades.md",
"Xavian/Blinding Slash.md",
"Xavian/Omnistrike.md",
"Xavian/Sun Strike.md",
"Pasted image 20260605132922.png",
"Q.md",
"Keys/Shift + 1.md",
"Shift.md",
"Images/Pasted image 20260223234556.png",
"Hotkeys.md",
"R.md",
"Images/Pasted image 20260224121329.png",
"Images/Pasted image 20260605113647.png",
"Images/Pasted image 20260605112156.png",
"Frost Bolt Icon.png",
"Keys/Mouse 1.md",
"Keys",
"Images/Pasted image 20260605125121.png",
"Images/Pasted image 20260605125057.png",
"Images/Pasted image 20260605124858.png",
"Images/Pasted image 20260605123320.png",
"_.base",
"_.canvas",
"_Keyboard.canvas",
"Xavian",
"_Keyboard 1.canvas",
"_Rime.canvas",
"_Vigour.canvas",
"Vigour",
"Rime"
]
}