backup
This commit is contained in:
parent
a819753644
commit
5e324d85a3
1751
content/.obsidian/plugins/obsidian-git/main.js
vendored
1751
content/.obsidian/plugins/obsidian-git/main.js
vendored
File diff suppressed because one or more lines are too long
@ -1,9 +1,9 @@
|
|||||||
{
|
{
|
||||||
"id": "obsidian-git",
|
"id": "obsidian-git",
|
||||||
"name": "Obsidian Git",
|
"name": "Git",
|
||||||
"description": "Backup your vault with Git.",
|
"description": "Backup your vault with Git.",
|
||||||
"isDesktopOnly": false,
|
"isDesktopOnly": false,
|
||||||
"fundingUrl": "https://ko-fi.com/vinzent",
|
"fundingUrl": "https://ko-fi.com/vinzent",
|
||||||
"js": "main.js",
|
"js": "main.js",
|
||||||
"version": "2.20.7"
|
"version": "2.23.2"
|
||||||
}
|
}
|
||||||
|
@ -8,6 +8,11 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.workspace-leaf-content[data-type='git-view'] .button-border {
|
||||||
|
border: 2px solid var(--interactive-accent);
|
||||||
|
border-radius: var(--radius-s);
|
||||||
|
}
|
||||||
|
|
||||||
.workspace-leaf-content[data-type='git-view'] .view-content {
|
.workspace-leaf-content[data-type='git-view'] .view-content {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
File diff suppressed because one or more lines are too long
@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"id": "obsidian-zotero-desktop-connector",
|
"id": "obsidian-zotero-desktop-connector",
|
||||||
"name": "Zotero Integration",
|
"name": "Zotero Integration",
|
||||||
"version": "3.0.7",
|
"version": "3.1.7",
|
||||||
"minAppVersion": "1.1.1",
|
"minAppVersion": "1.1.1",
|
||||||
"description": "Insert and import citations, bibliographies, notes, and PDF annotations from Zotero.",
|
"description": "Insert and import citations, bibliographies, notes, and PDF annotations from Zotero.",
|
||||||
"author": "mgmeyers",
|
"author": "mgmeyers",
|
||||||
"authorUrl": "https://github.com/mgmeyers/obsidian-zotero-integration",
|
"authorUrl": "https://github.com/mgmeyers/obsidian-zotero-integration",
|
||||||
"isDesktopOnly": true
|
"isDesktopOnly": true
|
||||||
}
|
}
|
||||||
|
@ -1,58 +1,3 @@
|
|||||||
/* @settings
|
|
||||||
|
|
||||||
name: Zotero Integration Reference List
|
|
||||||
id: zotero-pandoc-reference-list
|
|
||||||
settings:
|
|
||||||
-
|
|
||||||
id: pwc-font-size
|
|
||||||
title: Sidebar reference list font size
|
|
||||||
type: variable-number-slider
|
|
||||||
default: 14
|
|
||||||
format: px
|
|
||||||
min: 8
|
|
||||||
max: 24
|
|
||||||
step: 1
|
|
||||||
-
|
|
||||||
id: pwc-tooltip-font-size
|
|
||||||
title: Tooltip citation font size
|
|
||||||
type: variable-number-slider
|
|
||||||
default: 14
|
|
||||||
format: px
|
|
||||||
min: 8
|
|
||||||
max: 24
|
|
||||||
step: 1
|
|
||||||
-
|
|
||||||
id: pwc-citation-color
|
|
||||||
title: Citation color
|
|
||||||
type: variable-themed-color
|
|
||||||
format: hex
|
|
||||||
default-light: '#2e3338'
|
|
||||||
default-dark: '#dcddde'
|
|
||||||
-
|
|
||||||
id: pwc-citation-underline-color
|
|
||||||
title: Citation underline color
|
|
||||||
type: variable-themed-color
|
|
||||||
format: hex
|
|
||||||
default-light: '#705dcf'
|
|
||||||
default-dark: '#7f6df2'
|
|
||||||
-
|
|
||||||
id: pwc-citation-formatting-color
|
|
||||||
title: Citation formatting color
|
|
||||||
description: Changes the color of brackets and semicolons
|
|
||||||
type: variable-themed-color
|
|
||||||
format: hex
|
|
||||||
default-light: '#2e3338'
|
|
||||||
default-dark: '#dcddde'
|
|
||||||
-
|
|
||||||
id: pwc-citation-extra-color
|
|
||||||
title: 'Citation "extra" color'
|
|
||||||
description: 'Changes the color text within a citation, eg. "pp. 22-24"'
|
|
||||||
type: variable-themed-color
|
|
||||||
format: hex
|
|
||||||
default-light: '#2e3338'
|
|
||||||
default-dark: '#dcddde'
|
|
||||||
*/
|
|
||||||
|
|
||||||
.zt-format {
|
.zt-format {
|
||||||
border: 1px solid var(--background-modifier-border);
|
border: 1px solid var(--background-modifier-border);
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
@ -272,6 +217,15 @@ settings:
|
|||||||
left: 2em;
|
left: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.zt-color-chip {
|
||||||
|
display: inline-block;
|
||||||
|
width: 1em;
|
||||||
|
height: 1em;
|
||||||
|
border: 1px solid var(--background-modifier-border);
|
||||||
|
border-radius: var(--radius-s);
|
||||||
|
margin-right: var(--size-4-1);
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes bblFadInOut {
|
@keyframes bblFadInOut {
|
||||||
0%,
|
0%,
|
||||||
80%,
|
80%,
|
||||||
|
7
content/Giteaで静的サイトをホストする.md
Normal file
7
content/Giteaで静的サイトをホストする.md
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#self-hosted #server
|
||||||
|
[CI/CD pipeline for a Hugo-built static page using Gitea Actions on a selfhosted Gitea instance · Julius Röttgermann | DevOps related Blog and Tutorials](https://julius-roettgermann.de/post/hugo-cicd/)
|
||||||
|
|
||||||
|
やっぱ普通にrsyncで同期するしかないのか
|
||||||
|
|
||||||
|
privatekeyを環境からジェネってるけど、これどっから持ってきてるんだ
|
||||||
|
普通にリポジトリのsecretsに突っ込んでるだけか、まあそうか
|
Loading…
Reference in New Issue
Block a user