1
0

项目:Obsidian 更新

This commit is contained in:
周中平 2023-07-14 11:06:08 +08:00
parent 5b37b1df38
commit 1b8b70cdee
No known key found for this signature in database
GPG Key ID: B1DF9DD42D8E00DC
11 changed files with 10352 additions and 3818 deletions

4
.obsidian/canvas.json vendored Normal file
View File

@ -0,0 +1,4 @@
{
"snapToObjects": true,
"snapToGrid": true
}

View File

@ -25,5 +25,6 @@
"file-recovery": true, "file-recovery": true,
"publish": false, "publish": false,
"sync": false, "sync": false,
"canvas": false "canvas": true,
"bookmarks": false
} }

View File

@ -1,6 +1,7 @@
[ [
"file-explorer", "file-explorer",
"global-search", "global-search",
"canvas",
"tag-pane", "tag-pane",
"page-preview", "page-preview",
"command-palette", "command-palette",

View File

@ -1,7 +1,7 @@
{ {
"collapse-filter": true, "collapse-filter": false,
"search": "", "search": "",
"showTags": false, "showTags": true,
"showAttachments": false, "showAttachments": false,
"hideUnresolved": false, "hideUnresolved": false,
"showOrphans": true, "showOrphans": true,
@ -17,6 +17,6 @@
"repelStrength": 10, "repelStrength": 10,
"linkStrength": 1, "linkStrength": 1,
"linkDistance": 250, "linkDistance": 250,
"scale": 1, "scale": 0.13168724279835348,
"close": false "close": true
} }

File diff suppressed because it is too large Load Diff

View File

@ -5,5 +5,5 @@
"isDesktopOnly": false, "isDesktopOnly": false,
"fundingUrl": "https://ko-fi.com/vinzent", "fundingUrl": "https://ko-fi.com/vinzent",
"js": "main.js", "js": "main.js",
"version": "2.19.0" "version": "2.20.5"
} }

View File

@ -55,7 +55,9 @@
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
width: 11px;
} }
.git-tools .type[data-type="M"] { .git-tools .type[data-type="M"] {
color: orange; color: orange;
} }
@ -482,4 +484,24 @@
.workspace-leaf-content[data-type="diff-view"] .d2h-moved-tag { .workspace-leaf-content[data-type="diff-view"] .d2h-moved-tag {
border: 1px solid #3572b0; border: 1px solid #3572b0;
} }
/* ====================== Line Authoring Information ====================== */
.cm-gutterElement.obs-git-blame-gutter {
/* Add background color to spacing inbetween and around the gutter for better aesthetics */
border-width: 0px 2px 0.2px 2px;
border-style: solid;
border-color: var(--background-secondary);
background-color: var(--background-secondary);
}
.cm-gutterElement.obs-git-blame-gutter > div, .line-author-settings-preview {
/* delegate text color to settings */
color: var(--obs-git-gutter-text);
font-family: monospace;
height: 100%; /* ensure, that age-based background color occupies entire parent */
text-align: right;
padding: 0px 6px 0px 6px;
white-space: pre; /* Keep spaces and do not collapse them. */
}

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
{ {
"id": "obsidian-hider", "id": "obsidian-hider",
"name": "Hider", "name": "Hider",
"version": "1.2.4", "version": "1.2.5",
"minAppVersion": "0.16.0", "minAppVersion": "0.16.0",
"description": "Hide UI elements such as tooltips, status, titlebar and more", "description": "Hide UI elements such as tooltips, status, titlebar and more",
"author": "@kepano", "author": "@kepano",

View File

@ -71,3 +71,7 @@
display:none; display:none;
} }
/* Hide file nav header */
.hider-file-nav-header .workspace-leaf-content[data-type=file-explorer] .nav-header {
display: none;
}

View File

@ -34,7 +34,7 @@ const config = {
({ ({
docs: { docs: {
sidebarPath: require.resolve("./sidebars.js"), sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://git.7wate.com/zhouzhongping/wiki/src/branch/master", editUrl: "https://git.7wate.org/zhouzhongping/wiki/src/branch/master",
showLastUpdateAuthor: true, showLastUpdateAuthor: true,
showLastUpdateTime: true, showLastUpdateTime: true,
breadcrumbs: false, breadcrumbs: false,
@ -45,7 +45,7 @@ const config = {
blogSidebarCount: 7, blogSidebarCount: 7,
blogSidebarTitle: "近期文章", blogSidebarTitle: "近期文章",
showReadingTime: true, showReadingTime: true,
editUrl: "https://git.7wate.com/zhouzhongping/wiki/src/branch/master", editUrl: "https://git.7wate.org/zhouzhongping/wiki/src/branch/master",
feedOptions: { feedOptions: {
title: "7Wate`s Blog", title: "7Wate`s Blog",
description: "7Wate 的个人生活和工作记录", description: "7Wate 的个人生活和工作记录",
@ -80,7 +80,7 @@ const config = {
path: "wiki/getting-started", path: "wiki/getting-started",
routeBasePath: "getting-started", routeBasePath: "getting-started",
sidebarPath: require.resolve("./sidebars.js"), sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://git.7wate.com/zhouzhongping/wiki/src/branch/master", editUrl: "https://git.7wate.org/zhouzhongping/wiki/src/branch/master",
showLastUpdateAuthor: true, showLastUpdateAuthor: true,
showLastUpdateTime: true, showLastUpdateTime: true,
breadcrumbs: false, breadcrumbs: false,
@ -93,7 +93,7 @@ const config = {
path: "wiki/programming-language", path: "wiki/programming-language",
routeBasePath: "programming-language", routeBasePath: "programming-language",
sidebarPath: require.resolve("./sidebars.js"), sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://git.7wate.com/zhouzhongping/wiki/src/branch/master", editUrl: "https://git.7wate.org/zhouzhongping/wiki/src/branch/master",
showLastUpdateAuthor: true, showLastUpdateAuthor: true,
showLastUpdateTime: true, showLastUpdateTime: true,
breadcrumbs: false, breadcrumbs: false,
@ -106,7 +106,7 @@ const config = {
path: "wiki/structures-algorithms", path: "wiki/structures-algorithms",
routeBasePath: "structures-algorithms", routeBasePath: "structures-algorithms",
sidebarPath: require.resolve("./sidebars.js"), sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://git.7wate.com/zhouzhongping/wiki/src/branch/master", editUrl: "https://git.7wate.org/zhouzhongping/wiki/src/branch/master",
showLastUpdateAuthor: true, showLastUpdateAuthor: true,
showLastUpdateTime: true, showLastUpdateTime: true,
breadcrumbs: false, breadcrumbs: false,
@ -119,7 +119,7 @@ const config = {
path: "wiki/computer-composition", path: "wiki/computer-composition",
routeBasePath: "computer-composition", routeBasePath: "computer-composition",
sidebarPath: require.resolve("./sidebars.js"), sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://git.7wate.com/zhouzhongping/wiki/src/branch/master", editUrl: "https://git.7wate.org/zhouzhongping/wiki/src/branch/master",
showLastUpdateAuthor: true, showLastUpdateAuthor: true,
showLastUpdateTime: true, showLastUpdateTime: true,
breadcrumbs: false, breadcrumbs: false,
@ -132,7 +132,7 @@ const config = {
path: "wiki/computer-network", path: "wiki/computer-network",
routeBasePath: "computer-network", routeBasePath: "computer-network",
sidebarPath: require.resolve("./sidebars.js"), sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://git.7wate.com/zhouzhongping/wiki/src/branch/master", editUrl: "https://git.7wate.org/zhouzhongping/wiki/src/branch/master",
showLastUpdateAuthor: true, showLastUpdateAuthor: true,
showLastUpdateTime: true, showLastUpdateTime: true,
breadcrumbs: false, breadcrumbs: false,
@ -145,7 +145,7 @@ const config = {
path: "wiki/operating-system", path: "wiki/operating-system",
routeBasePath: "operating-system", routeBasePath: "operating-system",
sidebarPath: require.resolve("./sidebars.js"), sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://git.7wate.com/zhouzhongping/wiki/src/branch/master", editUrl: "https://git.7wate.org/zhouzhongping/wiki/src/branch/master",
showLastUpdateAuthor: true, showLastUpdateAuthor: true,
showLastUpdateTime: true, showLastUpdateTime: true,
breadcrumbs: false, breadcrumbs: false,
@ -158,7 +158,7 @@ const config = {
path: "wiki/database-system", path: "wiki/database-system",
routeBasePath: "database-system", routeBasePath: "database-system",
sidebarPath: require.resolve("./sidebars.js"), sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://git.7wate.com/zhouzhongping/wiki/src/branch/master", editUrl: "https://git.7wate.org/zhouzhongping/wiki/src/branch/master",
showLastUpdateAuthor: true, showLastUpdateAuthor: true,
showLastUpdateTime: true, showLastUpdateTime: true,
breadcrumbs: false, breadcrumbs: false,
@ -171,7 +171,7 @@ const config = {
path: "wiki/computer-security", path: "wiki/computer-security",
routeBasePath: "computer-security", routeBasePath: "computer-security",
sidebarPath: require.resolve("./sidebars.js"), sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://git.7wate.com/zhouzhongping/wiki/src/branch/master", editUrl: "https://git.7wate.org/zhouzhongping/wiki/src/branch/master",
showLastUpdateAuthor: true, showLastUpdateAuthor: true,
showLastUpdateTime: true, showLastUpdateTime: true,
breadcrumbs: false, breadcrumbs: false,
@ -184,7 +184,7 @@ const config = {
path: "wiki/software-engineering", path: "wiki/software-engineering",
routeBasePath: "software-engineering", routeBasePath: "software-engineering",
sidebarPath: require.resolve("./sidebars.js"), sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://git.7wate.com/zhouzhongping/wiki/src/branch/master", editUrl: "https://git.7wate.org/zhouzhongping/wiki/src/branch/master",
showLastUpdateAuthor: true, showLastUpdateAuthor: true,
showLastUpdateTime: true, showLastUpdateTime: true,
breadcrumbs: false, breadcrumbs: false,
@ -197,7 +197,7 @@ const config = {
path: "wiki/compilation-principle", path: "wiki/compilation-principle",
routeBasePath: "compilation-principle", routeBasePath: "compilation-principle",
sidebarPath: require.resolve("./sidebars.js"), sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://git.7wate.com/zhouzhongping/wiki/src/branch/master", editUrl: "https://git.7wate.org/zhouzhongping/wiki/src/branch/master",
showLastUpdateAuthor: true, showLastUpdateAuthor: true,
showLastUpdateTime: true, showLastUpdateTime: true,
breadcrumbs: false, breadcrumbs: false,
@ -211,7 +211,7 @@ const config = {
path: "group/organization", path: "group/organization",
routeBasePath: "org", routeBasePath: "org",
sidebarPath: require.resolve("./sidebars.js"), sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://git.7wate.com/zhouzhongping/wiki/src/branch/master", editUrl: "https://git.7wate.org/zhouzhongping/wiki/src/branch/master",
showLastUpdateAuthor: true, showLastUpdateAuthor: true,
showLastUpdateTime: true, showLastUpdateTime: true,
breadcrumbs: false, breadcrumbs: false,
@ -224,7 +224,7 @@ const config = {
path: "group/company", path: "group/company",
routeBasePath: "com", routeBasePath: "com",
sidebarPath: require.resolve("./sidebars.js"), sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://git.7wate.com/zhouzhongping/wiki/src/branch/master", editUrl: "https://git.7wate.org/zhouzhongping/wiki/src/branch/master",
showLastUpdateAuthor: true, showLastUpdateAuthor: true,
showLastUpdateTime: true, showLastUpdateTime: true,
breadcrumbs: false, breadcrumbs: false,
@ -237,7 +237,7 @@ const config = {
path: "group/government", path: "group/government",
routeBasePath: "gov", routeBasePath: "gov",
sidebarPath: require.resolve("./sidebars.js"), sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://git.7wate.com/zhouzhongping/wiki/src/branch/master", editUrl: "https://git.7wate.org/zhouzhongping/wiki/src/branch/master",
showLastUpdateAuthor: true, showLastUpdateAuthor: true,
showLastUpdateTime: true, showLastUpdateTime: true,
breadcrumbs: false, breadcrumbs: false,
@ -251,7 +251,7 @@ const config = {
path: "work/roadmap", path: "work/roadmap",
routeBasePath: "roadmap", routeBasePath: "roadmap",
sidebarPath: require.resolve("./sidebars.js"), sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://git.7wate.com/zhouzhongping/wiki/src/branch/master", editUrl: "https://git.7wate.org/zhouzhongping/wiki/src/branch/master",
showLastUpdateAuthor: true, showLastUpdateAuthor: true,
showLastUpdateTime: true, showLastUpdateTime: true,
breadcrumbs: false, breadcrumbs: false,
@ -264,7 +264,7 @@ const config = {
path: "work/devops", path: "work/devops",
routeBasePath: "devops", routeBasePath: "devops",
sidebarPath: require.resolve("./sidebars.js"), sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://git.7wate.com/zhouzhongping/wiki/src/branch/master", editUrl: "https://git.7wate.org/zhouzhongping/wiki/src/branch/master",
showLastUpdateAuthor: true, showLastUpdateAuthor: true,
showLastUpdateTime: true, showLastUpdateTime: true,
breadcrumbs: false, breadcrumbs: false,
@ -277,7 +277,7 @@ const config = {
path: "work/sre", path: "work/sre",
routeBasePath: "sre", routeBasePath: "sre",
sidebarPath: require.resolve("./sidebars.js"), sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://git.7wate.com/zhouzhongping/wiki/src/branch/master", editUrl: "https://git.7wate.org/zhouzhongping/wiki/src/branch/master",
showLastUpdateAuthor: true, showLastUpdateAuthor: true,
showLastUpdateTime: true, showLastUpdateTime: true,
breadcrumbs: false, breadcrumbs: false,
@ -291,7 +291,7 @@ const config = {
path: "life", path: "life",
routeBasePath: "life", routeBasePath: "life",
sidebarPath: require.resolve("./sidebars.js"), sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://git.7wate.com/zhouzhongping/wiki/src/branch/master", editUrl: "https://git.7wate.org/zhouzhongping/wiki/src/branch/master",
showLastUpdateAuthor: true, showLastUpdateAuthor: true,
showLastUpdateTime: true, showLastUpdateTime: true,
breadcrumbs: false, breadcrumbs: false,
@ -305,7 +305,7 @@ const config = {
path: "journal", path: "journal",
routeBasePath: "journal", routeBasePath: "journal",
sidebarPath: require.resolve("./sidebars.js"), sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://git.7wate.com/zhouzhongping/wiki/src/branch/master", editUrl: "https://git.7wate.org/zhouzhongping/wiki/src/branch/master",
showLastUpdateAuthor: true, showLastUpdateAuthor: true,
showLastUpdateTime: true, showLastUpdateTime: true,
breadcrumbs: false, breadcrumbs: false,