Compare commits
2 Commits
369df38d58
...
33a3d498c3
Author | SHA1 | Date | |
---|---|---|---|
33a3d498c3 | |||
4be701941c |
2
.obsidian/graph.json
vendored
2
.obsidian/graph.json
vendored
@ -46,6 +46,6 @@
|
||||
"repelStrength": 20,
|
||||
"linkStrength": 0.75,
|
||||
"linkDistance": 400,
|
||||
"scale": 0.06576306354918951,
|
||||
"scale": 0.4993882638266578,
|
||||
"close": true
|
||||
}
|
3487
.obsidian/plugins/obsidian-git/main.js
vendored
3487
.obsidian/plugins/obsidian-git/main.js
vendored
File diff suppressed because one or more lines are too long
7
.obsidian/plugins/obsidian-git/manifest.json
vendored
7
.obsidian/plugins/obsidian-git/manifest.json
vendored
@ -1,9 +1,10 @@
|
||||
{
|
||||
"author": "Vinzent",
|
||||
"authorUrl": "https://github.com/Vinzent03",
|
||||
"id": "obsidian-git",
|
||||
"name": "Git",
|
||||
"description": "Backup your vault with Git.",
|
||||
"description": "Integrate Git version control with automatic backup and other advanced features.",
|
||||
"isDesktopOnly": false,
|
||||
"fundingUrl": "https://ko-fi.com/vinzent",
|
||||
"js": "main.js",
|
||||
"version": "2.24.3"
|
||||
"version": "2.25.0"
|
||||
}
|
||||
|
6
.obsidian/plugins/obsidian-git/styles.css
vendored
6
.obsidian/plugins/obsidian-git/styles.css
vendored
@ -77,6 +77,10 @@
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.is-active .git-tools .buttons > * {
|
||||
color: var(--nav-item-color-active);
|
||||
}
|
||||
|
||||
.git-author {
|
||||
color: var(--text-accent);
|
||||
}
|
||||
@ -550,7 +554,7 @@
|
||||
white-space: pre; /* Keep spaces and do not collapse them. */
|
||||
}
|
||||
|
||||
@media(max-width:800px){
|
||||
@media (max-width: 800px) {
|
||||
/* hide git blame gutter not to superpose text */
|
||||
.cm-gutterElement.obs-git-blame-gutter {
|
||||
display: none;
|
||||
|
223
.obsidian/plugins/obsidian-hider/main.js
vendored
223
.obsidian/plugins/obsidian-hider/main.js
vendored
File diff suppressed because one or more lines are too long
22
.obsidian/plugins/obsidian-hider/manifest.json
vendored
22
.obsidian/plugins/obsidian-hider/manifest.json
vendored
@ -1,11 +1,11 @@
|
||||
{
|
||||
"id": "obsidian-hider",
|
||||
"name": "Hider",
|
||||
"version": "1.4.0",
|
||||
"minAppVersion": "1.6.0",
|
||||
"description": "Hide UI elements such as tooltips, status, titlebar and more",
|
||||
"author": "@kepano",
|
||||
"authorUrl": "https://www.twitter.com/kepano",
|
||||
"fundingUrl": "https://www.buymeacoffee.com/kepano",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
{
|
||||
"id": "obsidian-hider",
|
||||
"name": "Hider",
|
||||
"version": "1.5.1",
|
||||
"minAppVersion": "1.6.0",
|
||||
"description": "Hide UI elements such as tooltips, status, titlebar and more",
|
||||
"author": "@kepano",
|
||||
"authorUrl": "https://www.twitter.com/kepano",
|
||||
"fundingUrl": "https://www.buymeacoffee.com/kepano",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
|
31
.obsidian/plugins/obsidian-hider/styles.css
vendored
31
.obsidian/plugins/obsidian-hider/styles.css
vendored
@ -1,59 +1,66 @@
|
||||
/* Hides vault name */
|
||||
.hider-vault .workspace-sidedock-vault-profile,
|
||||
body.hider-vault:not(.is-mobile) .workspace-split.mod-left-split .workspace-sidedock-vault-profile {
|
||||
display:none;
|
||||
display:none;
|
||||
}
|
||||
|
||||
/* Hide tabs */
|
||||
.hider-tabs .mod-root .workspace-tabs .workspace-tab-header-container {
|
||||
display: none;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.hider-tabs .mod-top-left-space .view-header {
|
||||
padding-left: var(--frame-left-space);
|
||||
}
|
||||
|
||||
/* Hide sidebar buttons */
|
||||
.hider-sidebar-buttons .sidebar-toggle-button.mod-right,
|
||||
.hider-sidebar-buttons .sidebar-toggle-button.mod-left {
|
||||
display: none;
|
||||
display: none;
|
||||
}
|
||||
.hider-sidebar-buttons.mod-macos.is-hidden-frameless:not(.is-popout-window) .workspace .workspace-tabs.mod-top-right-space .workspace-tab-header-container {
|
||||
padding-right: 4px;
|
||||
padding-right: 4px;
|
||||
}
|
||||
.hider-sidebar-buttons.mod-macos {
|
||||
--frame-left-space: 60px;
|
||||
}
|
||||
|
||||
/* Hide meta */
|
||||
.hider-meta .markdown-reading-view .metadata-container {
|
||||
display:none;
|
||||
display:none;
|
||||
}
|
||||
|
||||
/* Hide scrollbars */
|
||||
.hider-scroll ::-webkit-scrollbar {
|
||||
display:none;
|
||||
display:none;
|
||||
}
|
||||
|
||||
/* Hide status */
|
||||
.hider-status .status-bar {
|
||||
display:none;
|
||||
display:none;
|
||||
}
|
||||
|
||||
/* Hide tooltips */
|
||||
.hider-tooltips .tooltip {
|
||||
display:none;
|
||||
display:none;
|
||||
}
|
||||
|
||||
/* Hide search suggestions */
|
||||
.hider-search-suggestions .suggestion-container.mod-search-suggestion {
|
||||
display: none;
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Hide search count flair */
|
||||
.hider-search-counts .tree-item-flair:not(.tag-pane-tag-count) {
|
||||
display:none;
|
||||
display:none;
|
||||
}
|
||||
|
||||
/* Hide instructions */
|
||||
.hider-instructions .prompt-instructions {
|
||||
display:none;
|
||||
display:none;
|
||||
}
|
||||
|
||||
/* Hide file nav header */
|
||||
.hider-file-nav-header .workspace-leaf-content[data-type=file-explorer] .nav-header {
|
||||
display: none;
|
||||
display: none;
|
||||
}
|
||||
|
29
.obsidian/plugins/obsidian-linter/data.json
vendored
29
.obsidian/plugins/obsidian-linter/data.json
vendored
@ -161,7 +161,7 @@
|
||||
"enabled": true
|
||||
},
|
||||
"empty-line-around-code-fences": {
|
||||
"enabled": true
|
||||
"enabled": false
|
||||
},
|
||||
"empty-line-around-math-blocks": {
|
||||
"enabled": true
|
||||
@ -205,7 +205,9 @@
|
||||
"enabled": false
|
||||
},
|
||||
"space-between-chinese-japanese-or-korean-and-english-or-numbers": {
|
||||
"enabled": true
|
||||
"enabled": true,
|
||||
"english-symbols-punctuation-before": "-+;:'\"°%$)]",
|
||||
"english-symbols-punctuation-after": "-+'\"([¥$"
|
||||
},
|
||||
"trailing-spaces": {
|
||||
"enabled": true,
|
||||
@ -234,6 +236,28 @@
|
||||
},
|
||||
"remove-multiple-blank-lines-on-paste": {
|
||||
"enabled": false
|
||||
},
|
||||
"add-blank-line-after-yaml": {
|
||||
"enabled": false
|
||||
},
|
||||
"dedupe-yaml-array-values": {
|
||||
"enabled": false,
|
||||
"dedupe-alias-key": true,
|
||||
"dedupe-tag-key": true,
|
||||
"dedupe-array-keys": true,
|
||||
"ignore-keys": ""
|
||||
},
|
||||
"sort-yaml-array-values": {
|
||||
"enabled": false,
|
||||
"sort-alias-key": true,
|
||||
"sort-tag-key": true,
|
||||
"sort-array-keys": true,
|
||||
"ignore-keys": "",
|
||||
"sort-order": "Ascending Alphabetical"
|
||||
},
|
||||
"default-language-for-code-fences": {
|
||||
"enabled": false,
|
||||
"default-language": ""
|
||||
}
|
||||
},
|
||||
"lintOnSave": true,
|
||||
@ -243,6 +267,7 @@
|
||||
"displayLintOnFileChangeNotice": false,
|
||||
"settingsConvertedToConfigKeyValues": true,
|
||||
"foldersToIgnore": [],
|
||||
"filesToIgnore": [],
|
||||
"linterLocale": "system-default",
|
||||
"logLevel": "ERROR",
|
||||
"lintCommands": [],
|
||||
|
977
.obsidian/plugins/obsidian-minimal-settings/main.js
vendored
977
.obsidian/plugins/obsidian-minimal-settings/main.js
vendored
File diff suppressed because one or more lines are too long
@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "obsidian-minimal-settings",
|
||||
"name": "Minimal Theme Settings",
|
||||
"version": "8.0.2",
|
||||
"version": "8.1.1",
|
||||
"minAppVersion": "1.1.9",
|
||||
"description": "Change the colors, fonts and features of Minimal Theme.",
|
||||
"author": "@kepano",
|
||||
|
File diff suppressed because one or more lines are too long
@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "obsidian-weread-plugin",
|
||||
"name": "Weread",
|
||||
"version": "0.10.0",
|
||||
"version": "0.11.2",
|
||||
"minAppVersion": "0.12.0",
|
||||
"description": "This is obsidian plugin for Tencent weread.",
|
||||
"author": "hankzhao",
|
||||
|
1031
Tech/operating-system/Linux/2.安装/Linux 无法启动排查指南.md
Normal file
1031
Tech/operating-system/Linux/2.安装/Linux 无法启动排查指南.md
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user