This commit is contained in:
SeedList
2025-01-14 15:34:14 +08:00
parent 193efe7dc0
commit 0f8b23bdd6
28 changed files with 19823 additions and 177 deletions

4
.obsidian/app.json vendored
View File

@ -1,5 +1,7 @@
{
"newFileLocation": "current",
"newLinkFormat": "relative",
"attachmentFolderPath": "./assets"
"attachmentFolderPath": "./assets",
"strictLineBreaks": true,
"useMarkdownLinks": true
}

View File

@ -1,3 +1,4 @@
{
"nativeMenus": true
"nativeMenus": true,
"cssTheme": "ITS Theme"
}

View File

@ -3,5 +3,6 @@
"nuke-orphans",
"hidden-folder-obsidian",
"update-relative-links",
"better-export-pdf"
"better-export-pdf",
"easy-typing-obsidian"
]

4
.obsidian/file-recovery.json vendored Normal file
View File

@ -0,0 +1,4 @@
{
"intervalMinutes": 10,
"keepDays": 7
}

View File

@ -32,6 +32,6 @@
"repelStrength": 10,
"linkStrength": 1,
"linkDistance": 250,
"scale": 0.36288736930121324,
"scale": 0.7132754626224458,
"close": true
}

View File

@ -25,5 +25,98 @@
],
"key": "D"
}
],
"workspace:goto-tab-1": [],
"workspace:goto-tab-2": [],
"workspace:goto-tab-3": [],
"workspace:goto-tab-4": [],
"workspace:goto-tab-5": [],
"workspace:goto-tab-6": [],
"workspace:goto-tab-7": [],
"workspace:goto-tab-8": [],
"workspace:goto-last-tab": [],
"editor:set-heading-1": [
{
"modifiers": [
"Mod"
],
"key": "1"
}
],
"editor:set-heading-2": [
{
"modifiers": [
"Mod"
],
"key": "2"
}
],
"editor:set-heading-3": [
{
"modifiers": [
"Mod"
],
"key": "3"
}
],
"editor:set-heading-4": [
{
"modifiers": [
"Mod"
],
"key": "4"
}
],
"editor:set-heading-5": [
{
"modifiers": [
"Mod"
],
"key": "5"
}
],
"editor:set-heading-6": [
{
"modifiers": [
"Mod"
],
"key": "6"
}
],
"open-with-default-app:open": [
{
"modifiers": [
"Alt",
"Mod"
],
"key": "L"
}
],
"editor:insert-codeblock": [
{
"modifiers": [
"Mod",
"Shift"
],
"key": "K"
}
],
"editor:toggle-blockquote": [
{
"modifiers": [
"Mod",
"Shift"
],
"key": "Q"
}
],
"editor:toggle-highlight": [
{
"modifiers": [
"Alt",
"Mod"
],
"key": "H"
}
]
}

View File

@ -0,0 +1,63 @@
{
"Tabout": true,
"SelectionEnhance": true,
"IntrinsicSymbolPairs": true,
"BaseObEditEnhance": true,
"FW2HWEnhance": true,
"BetterCodeEdit": true,
"BetterBackspace": true,
"AutoFormat": true,
"ExcludeFiles": "",
"ChineseEnglishSpace": true,
"ChineseNumberSpace": true,
"EnglishNumberSpace": true,
"ChineseNoSpace": true,
"QuoteSpace": true,
"PunctuationSpace": true,
"AutoCapital": true,
"AutoCapitalMode": "typing",
"PunctuationSpaceMode": "typing",
"InlineCodeSpaceMode": 1,
"InlineFormulaSpaceMode": 1,
"InlineLinkSpaceMode": 2,
"InlineLinkSmartSpace": false,
"UserDefinedRegSwitch": true,
"UserDefinedRegExp": "{{.*?}}|++\n<.*?>|--\n\\[\\!.*?\\][-+]{0,1}|-+\n(file:///|https?://|ftp://|obsidian://|zotero://|www.)[^\\s《》。,;;:“”‘’\\)\\(\\[\\]\\{\\}']+|--\n\n[a-zA-Z0-9_\\-.]+@[a-zA-Z0-9_\\-.]+|++\n(?<!#)#[\\u4e00-\\u9fa5\\w-\\/]+|++",
"debug": false,
"userSelRepRuleTrigger": [
"-",
"#"
],
"userSelRepRuleValue": [
{
"left": "~~",
"right": "~~"
},
{
"left": "#",
"right": " "
}
],
"userDeleteRulesStrList": [
[
"demo|",
"|"
]
],
"userConvertRulesStrList": [
[
":)|",
"😀|"
]
],
"userSelRuleSettingsOpen": true,
"userDelRuleSettingsOpen": true,
"userCvtRuleSettingsOpen": true,
"StrictModeEnter": true,
"StrictLineMode": "enter_twice",
"EnhanceModA": false,
"TryFixChineseIM": true,
"PuncRectify": false,
"FixMacOSContextMenu": false,
"TryFixMSIME": false
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,11 @@
{
"id": "easy-typing-obsidian",
"name": "Easy Typing",
"version": "5.5.11",
"minAppVersion": "0.15.0",
"description": "This plugin aims to enhance and optimize the editing experience in Obsidian",
"author": "yaozhuwa",
"authorUrl": "https://github.com/Yaozhuwa",
"isDesktopOnly": false,
"fundingUrl": "https://www.buymeacoffee.com/yaozhuwa"
}

View File

@ -0,0 +1,17 @@
span[class="easy-typing-tabstops"] {
border-radius: 2px;
background-color: #87cefa2e;
outline: #87cefa6e solid 1px;
}
span[class="easy-typing-cursor-widget"] {
color: #1364ce6e;
/* animation: blink 1s step-start 0s infinite; */
display: inline;
position: absolute;
white-space: pre;
}
/* @keyframes blink {
50% { opacity: 0; }
} */

View File

@ -0,0 +1,7 @@
{
"name": "ITS Theme",
"version": "1.3.31",
"minAppVersion": "0.16.0",
"author": "SlRvb",
"authorUrl": "https://github.com/SlRvb"
}

14453
.obsidian/themes/ITS Theme/theme.css vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -4,21 +4,21 @@
"type": "split",
"children": [
{
"id": "afcdd2b616c0b37b",
"id": "19e0f4479dd76d16",
"type": "tabs",
"children": [
{
"id": "00d05d2d77d31c72",
"id": "23dfd489189eecea",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "SanPinPLM/相关操作/1.EDM/32.浩辰CAD图纸模板制作.md",
"file": "SanPinPLM/相关操作/3.PLM/21.项目类权限详解.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "32.浩辰CAD图纸模板制作"
"title": "21.项目类权限详解"
}
}
]
@ -52,7 +52,7 @@
"state": {
"type": "search",
"state": {
"query": "7z",
"query": "",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
@ -72,18 +72,6 @@
"icon": "lucide-bookmark",
"title": "书签"
}
},
{
"id": "aff87e682ff58493",
"type": "leaf",
"state": {
"type": "image",
"state": {
"file": "SanPinPLM/相关操作/1.EDM/assets/Pasted image 20250111204927.png"
},
"icon": "lucide-image",
"title": "Pasted image 20250111204927"
}
}
]
}
@ -105,10 +93,10 @@
"state": {
"type": "outline",
"state": {
"file": "SanPinPLM/相关操作/1.EDM/32.浩辰CAD图纸模板制作.md"
"file": "SanPinPLM/相关操作/3.PLM/21.项目类权限详解.md"
},
"icon": "lucide-list",
"title": "32.浩辰CAD图纸模板制作 的大纲"
"title": "21.项目类权限详解 的大纲"
}
},
{
@ -174,33 +162,43 @@
"hidden-folder-obsidian:显示文件夹": false
}
},
"active": "00d05d2d77d31c72",
"active": "23dfd489189eecea",
"lastOpenFiles": [
"SanPinPLM/相关操作/1.EDM/31.浩辰CAD机械版图纸模板制作.md",
"SanPinPLM/相关操作/1.EDM/28.AutoCAD图纸模板制作.md",
"SanPinPLM/相关操作/1.EDM/29.中望CAD图纸模板制作.md",
"SanPinPLM/相关操作/1.EDM/185.流程分支设置.md",
"SanPinPLM/相关操作/3.PLM/22.任务类权限详解.md",
"SanPinPLM/相关操作/3.PLM/21.项目类权限详解.md",
"SanPinPLM/相关操作/3.PLM/20.项目角色.md",
"SanPinPLM/相关操作/3.PLM/50.项目邮件通知.md",
"SanPinPLM/相关操作/2.PDM/59.把零部件放入标准物料库.md",
"SanPinPLM/相关操作/2.PDM/60.BOM搭建.md",
"SanPinPLM/相关操作/1.EDM/102.文档变更流程模板制作.md",
"SanPinPLM/相关操作/4.other/15.自定义控件页面.md",
"KMsoftPLM/二开记录/工装台账汇总.md",
"SanPinPLM/相关操作/1.EDM/assets/Pasted image 20250111204927.png",
"SanPinPLM/相关操作/2.PDM/15.浩辰CAD机械版接口安装.md",
"SanPinPLM/相关操作/2.PDM/10.AutoCAD接口安装.md",
"SanPinPLM/相关操作/3.PLM/10.项目管理基本概念.md",
"SanPinPLM/相关操作/1.EDM/20.文件权限管理.md",
"SanPinPLM/相关操作/1.EDM/15.文件的收发管理.md",
"SanPinPLM/相关操作/1.EDM/10.文件版本管理.md",
"SanPinPLM/相关操作/1.EDM/8.执行审批流.md",
"SanPinPLM/相关操作/1.EDM/5.文件生命周期.md",
"SanPinPLM/相关操作/0.SETOUT/42.角色设置.md",
"SanPinPLM/相关操作/0.SETOUT/43.角色权限设置.md",
"SanPinPLM/相关操作/4.other/10.并发用户管理.md",
"SanPinPLM/相关操作/4.other/70.列表中隔行显示颜色.md",
"未命名.canvas",
"SanPinPLM/相关操作/4.other/75.系统日历设置.md",
"SanPinPLM/相关操作/0.SETOUT/40.用户设置.md",
"KMsoftPLM/系统介绍/用户/系统三员.md",
"KMsoftPLM/系统介绍/用户/超级管理员.md",
"KMsoftPLM/系统介绍/用户/维护员.md",
"KMsoftPLM/系统介绍/我的桌面/我的任务.md",
"KMsoftPLM/相关操作/锁定与超时退出设置.md",
"KMsoftPLM/系统介绍/安全管理/安全选项.md",
"KMsoftPLM/系统介绍/安全管理/菜单定义功能授权.md",
"KMsoftPLM/相关操作/数据导入.md",
"KMsoftPLM/相关操作/assets/Pasted image 20250113205132.png",
"KMsoftPLM/相关操作/assets/Pasted image 20250113205033.png",
"KMsoftPLM/相关操作/assets/Pasted image 20250113204228.png",
"KMsoftPLM/相关操作/assets/Pasted image 20250113204202.png",
"SanPinPLM/相关操作/0.SETOUT/assets/Pasted image 20250113113253.png",
"SanPinPLM/相关操作/1.EDM/assets/Pasted image 20250111204927.png",
"AutoCAD/Files/CAD模板.7z",
"AutoCAD/Files",
"AutoCAD/新建文件夹",
"AutoCAD/2.显示菜单栏.md",
"AutoCAD/1.基础操作.md",
"Obsidian/插件/Obsidian孤立文件管理插件Nuke Orphans.md",
"Obsidian/插件/Obsidian看板任务管理插件CardBoard.md",
"Obsidian/插件/Obsidian任务管理插件Tasks.md",
"Obsidian/插件/Obsidian隐藏文件或文件夹插件Hidden Folder.md",
"Obsidian/插件/Obsidian自动更新相对路径插件Update Relative Links.md",
"Obsidian/插件/Obsidian附件管理插件Consistent Attachments and Links.md",
"Obsidian/插件/Obsidian附件管理插件Attachment Management不推荐.md",
"VMWare/主机连虚拟机端口.md"
"AutoCAD/新建文件夹"
]
}