vault backup: 2022-09-03 16:02:59

This commit is contained in:
juan 2022-09-03 16:02:59 +08:00
parent 2f912701ba
commit 8c30c81f94
10 changed files with 24503 additions and 5 deletions

View file

@ -1,7 +1,7 @@
{
"theme": "moonstone",
"translucency": true,
"cssTheme": "Atom",
"cssTheme": "Prism",
"interfaceFontFamily": "IBM Plex Sans",
"textFontFamily": "IBM Plex Mono,monospace",
"monospaceFontFamily": "IBM Plex Mono",

View file

@ -1,3 +1,4 @@
[
"obsidian-git"
"obsidian-git",
"obsidian-style-settings"
]

View file

@ -13,6 +13,7 @@
"editor-status",
"starred",
"markdown-importer",
"random-note",
"outline",
"word-count",
"file-recovery"

View file

@ -0,0 +1,11 @@
{
"obsidian-prism-theme@@color-schemes-lt": "pt-color-scheme-pistachio-lt",
"obsidian-prism-theme@@light-accent-color-preset": "pt-accent-color-aqua-lt",
"obsidian-prism-theme@@color-schemes-dt": "pt-color-scheme-indigo-dt",
"obsidian-prism-theme@@pt-disable-blur": true,
"obsidian-prism-theme@@pt-disable-animations": true,
"obsidian-prism-theme@@pt-disable-custom-icons": false,
"obsidian-prism-theme@@pt-hide-view-header": false,
"obsidian-prism-theme@@accent-style-dt": "pt-accent-style-borderandfilled-dt",
"obsidian-prism-theme@@accent-style-lt": "pt-accent-style-borderandfilled-lt"
}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,10 @@
{
"id": "obsidian-style-settings",
"name": "Style Settings",
"version": "0.4.11",
"minAppVersion": "0.11.5",
"description": "Offers controls for adjusting theme, plugin, and snippet CSS variables.",
"author": "mgmeyers",
"authorUrl": "https://github.com/mgmeyers/obsidian-style-settings",
"isDesktopOnly": false
}

File diff suppressed because one or more lines are too long

View file

@ -1,3 +0,0 @@
.language-expander {
display: none;
}

15354
.obsidian/themes/Prism.css vendored Normal file

File diff suppressed because one or more lines are too long

View file

@ -57,6 +57,14 @@ Write an efficient algorithm that searches for a value `target` in an `m x n` in
#### Constraints
- `m == matrix.length`
- `n == matrix[i].length`
- `1 <= n, m <= 300`
- `-109 <= matrix[i][j] <= 109`
- All the integers in each row are **sorted** in ascending order.
- All the integers in each column are **sorted** in ascending order.
- `-109 <= target <= 109`
### Thoughts
> [!summary]