1
0

项目:更新主题插件

This commit is contained in:
周中平 2022-11-29 14:47:59 +08:00
parent bf2f8ce64b
commit 541b56abf9
No known key found for this signature in database
GPG Key ID: B1DF9DD42D8E00DC
12 changed files with 2327 additions and 696 deletions

6
.obsidian/app.json vendored
View File

@ -9,13 +9,13 @@
"communityPluginSortOrder": "download", "communityPluginSortOrder": "download",
"attachmentFolderPath": "", "attachmentFolderPath": "",
"userIgnoreFilters": [ "userIgnoreFilters": [
"node_modules/",
"build/",
"src/", "src/",
"static/", "static/",
"templates/" "templates/"
], ],
"newFileLocation": "current", "newFileLocation": "current",
"defaultViewMode": "source", "defaultViewMode": "source",
"showFrontmatter": false "showFrontmatter": true,
"vimMode": false,
"newLinkFormat": "absolute"
} }

View File

@ -4,5 +4,6 @@
"templater-obsidian", "templater-obsidian",
"obsidian-mind-map", "obsidian-mind-map",
"periodic-notes", "periodic-notes",
"obsidian-git" "obsidian-git",
"obsidian-minimal-settings"
] ]

View File

@ -20,8 +20,8 @@
"basePath": "", "basePath": "",
"differentIntervalCommitAndPush": false, "differentIntervalCommitAndPush": false,
"changedFilesInStatusBar": true, "changedFilesInStatusBar": true,
"username": "",
"showedMobileNotice": true, "showedMobileNotice": true,
"refreshSourceControlTimer": 7000, "refreshSourceControlTimer": 7000,
"showBranchStatusBar": true "showBranchStatusBar": true,
"setLastSaveToLastCommit": false
} }

File diff suppressed because it is too large Load Diff

View File

@ -4,5 +4,5 @@
"description": "Backup your vault with Git.", "description": "Backup your vault with Git.",
"isDesktopOnly": false, "isDesktopOnly": false,
"js": "main.js", "js": "main.js",
"version": "2.6.0" "version": "2.12.1"
} }

View File

@ -20,6 +20,7 @@
.obsidian-git-center { .obsidian-git-center {
margin: auto; margin: auto;
text-align: center;
width: 50%; width: 50%;
} }

View File

@ -0,0 +1,36 @@
{
"theme": "moonstone",
"lightStyle": "minimal-light-white",
"darkStyle": "minimal-dark",
"lightScheme": "minimal-default-light",
"darkScheme": "minimal-default-dark",
"editorFont": "",
"lineHeight": 1.6,
"lineWidth": 40,
"lineWidthWide": 50,
"maxWidth": 88,
"textNormal": 18,
"textSmall": 14,
"imgGrid": false,
"imgWidth": "img-default-width",
"tableWidth": "table-default-width",
"iframeWidth": "iframe-default-width",
"mapWidth": "map-default-width",
"chartWidth": "chart-default-width",
"colorfulHeadings": false,
"colorfulFrame": false,
"colorfulActiveStates": false,
"trimNames": true,
"labeledNav": false,
"fullWidthMedia": true,
"bordersToggle": true,
"minimalStatus": true,
"focusMode": false,
"underlineInternal": true,
"underlineExternal": true,
"useSystemTheme": false,
"folding": true,
"lineNumbers": true,
"readableLineLength": true,
"devBlockWidth": false
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,10 @@
{
"id": "obsidian-minimal-settings",
"name": "Minimal Theme Settings",
"version": "6.1.0",
"minAppVersion": "0.16.0",
"description": "Change the colors, fonts and features of Minimal Theme.",
"author": "@kepano",
"authorUrl": "https://www.twitter.com/kepano",
"isDesktopOnly": false
}

View File

@ -0,0 +1 @@
/* Empty */

View File

@ -1,6 +1,6 @@
{ {
"name": "Minimal", "name": "Minimal",
"version": "6.0.12", "version": "6.1.10",
"minAppVersion": "0.16.0", "minAppVersion": "0.16.0",
"author": "@kepano", "author": "@kepano",
"authorUrl": "https://twitter.com/kepano" "authorUrl": "https://twitter.com/kepano"

File diff suppressed because one or more lines are too long