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,
"publish": false,
"sync": false,
"canvas": false
"canvas": true,
"bookmarks": false
}

View File

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

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -55,7 +55,9 @@
display: flex;
align-items: center;
justify-content: center;
width: 11px;
}
.git-tools .type[data-type="M"] {
color: orange;
}
@ -483,3 +485,23 @@
.workspace-leaf-content[data-type="diff-view"] .d2h-moved-tag {
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",
"name": "Hider",
"version": "1.2.4",
"version": "1.2.5",
"minAppVersion": "0.16.0",
"description": "Hide UI elements such as tooltips, status, titlebar and more",
"author": "@kepano",

View File

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