vault backup: 2025-08-21 07:28:23
This commit is contained in:
parent
150614a920
commit
40a3648cd5
|
|
@ -1,3 +1,4 @@
|
||||||
[
|
[
|
||||||
"obsidian-git"
|
"obsidian-git",
|
||||||
|
"novel-word-count"
|
||||||
]
|
]
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"id": "novel-word-count",
|
||||||
|
"name": "Novel word count",
|
||||||
|
"version": "4.5.0",
|
||||||
|
"minAppVersion": "0.13.31",
|
||||||
|
"description": "Displays a word count (and more!) for each file, folder and vault in the File Explorer pane.",
|
||||||
|
"author": "Isaac Lyman",
|
||||||
|
"authorUrl": "https://isaaclyman.com",
|
||||||
|
"isDesktopOnly": false,
|
||||||
|
"fundingUrl": "https://ko-fi.com/isaaclyman"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,121 @@
|
||||||
|
.novel-word-count--active .nav-header .nav-buttons-container {
|
||||||
|
flex-wrap: wrap !important;
|
||||||
|
}
|
||||||
|
.novel-word-count--active .nav-header .nav-buttons-container::after {
|
||||||
|
content: attr(data-novel-word-count-plugin);
|
||||||
|
display: block;
|
||||||
|
font-size: 0.8em;
|
||||||
|
max-width: calc(100% - 20px);
|
||||||
|
min-width: 0;
|
||||||
|
opacity: var(--novel-word-count-opacity);
|
||||||
|
overflow: hidden;
|
||||||
|
padding: 0 4px;
|
||||||
|
position: relative;
|
||||||
|
text-align: center;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.novel-word-count--active .nav-files-container .nav-file-title {
|
||||||
|
align-items: baseline;
|
||||||
|
}
|
||||||
|
.novel-word-count--active .nav-files-container .nav-file-title::after {
|
||||||
|
content: attr(data-novel-word-count-plugin);
|
||||||
|
flex: 1 0 auto;
|
||||||
|
font-size: 0.8em;
|
||||||
|
max-width: calc(100% - 20px);
|
||||||
|
min-width: 0;
|
||||||
|
opacity: var(--novel-word-count-opacity);
|
||||||
|
order: 1;
|
||||||
|
overflow: hidden;
|
||||||
|
padding: 0 4px;
|
||||||
|
position: relative;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
.novel-word-count--active .nav-files-container .nav-file-title-content {
|
||||||
|
min-width: 20px;
|
||||||
|
}
|
||||||
|
.novel-word-count--note-right .nav-files-container .nav-file-title-content {
|
||||||
|
flex: 1 1 0;
|
||||||
|
}
|
||||||
|
.novel-word-count--note-right .nav-files-container .nav-file-title::after {
|
||||||
|
flex: none;
|
||||||
|
order: 6;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.novel-word-count--note-below .nav-files-container .nav-file-title {
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
.novel-word-count--note-below .nav-files-container .nav-file-title-content {
|
||||||
|
flex: 100%;
|
||||||
|
}
|
||||||
|
.novel-word-count--note-below .nav-files-container .nav-file-title::after {
|
||||||
|
display: inline-block;
|
||||||
|
margin-top: -2px;
|
||||||
|
max-width: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
padding: 0;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
.novel-word-count--active .nav-files-container .nav-folder-title {
|
||||||
|
align-items: baseline;
|
||||||
|
}
|
||||||
|
.novel-word-count--active .nav-files-container .nav-folder-title::after {
|
||||||
|
content: attr(data-novel-word-count-plugin);
|
||||||
|
flex: 1 0 auto;
|
||||||
|
font-size: 0.8em;
|
||||||
|
max-width: calc(100% - 20px);
|
||||||
|
min-width: 0;
|
||||||
|
opacity: var(--novel-word-count-opacity);
|
||||||
|
order: 1;
|
||||||
|
overflow: hidden;
|
||||||
|
padding: 0 4px;
|
||||||
|
position: relative;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
.novel-word-count--active .nav-files-container .nav-folder-title-content {
|
||||||
|
min-width: 20px;
|
||||||
|
}
|
||||||
|
.novel-word-count--folder-right .nav-files-container .nav-folder-title-content {
|
||||||
|
flex: 1 1 0;
|
||||||
|
}
|
||||||
|
.novel-word-count--folder-right .nav-files-container .nav-folder-title::after {
|
||||||
|
flex: none;
|
||||||
|
order: 6;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.novel-word-count--folder-below .nav-files-container .nav-folder-title {
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
.novel-word-count--folder-below .nav-files-container .nav-folder-title-content {
|
||||||
|
flex: 100%;
|
||||||
|
}
|
||||||
|
.novel-word-count--folder-below .nav-files-container .nav-folder-title::after {
|
||||||
|
display: inline-block;
|
||||||
|
margin-top: -2px;
|
||||||
|
max-width: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
padding: 0;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.novel-word-count-settings-header {
|
||||||
|
align-items: baseline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.novel-word-count-donation-line {
|
||||||
|
align-items: center;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.novel-word-count-hr {
|
||||||
|
border-color: #ccc;
|
||||||
|
margin: 1rem 0;
|
||||||
|
}
|
||||||
|
|
@ -13,12 +13,12 @@
|
||||||
"state": {
|
"state": {
|
||||||
"type": "markdown",
|
"type": "markdown",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "2025/review-niora-aug-2025.md",
|
"file": "2025/review-niora-aug-2025-draft.md",
|
||||||
"mode": "source",
|
"mode": "source",
|
||||||
"source": false
|
"source": false
|
||||||
},
|
},
|
||||||
"icon": "lucide-file",
|
"icon": "lucide-file",
|
||||||
"title": "review-niora-aug-2025"
|
"title": "review-niora-aug-2025-draft"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
@ -78,7 +78,7 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"direction": "horizontal",
|
"direction": "horizontal",
|
||||||
"width": 300
|
"width": 448.5
|
||||||
},
|
},
|
||||||
"right": {
|
"right": {
|
||||||
"id": "e30ab937380a4672",
|
"id": "e30ab937380a4672",
|
||||||
|
|
@ -163,18 +163,20 @@
|
||||||
"canvas:Create new canvas": false,
|
"canvas:Create new canvas": false,
|
||||||
"daily-notes:Open today's daily note": false,
|
"daily-notes:Open today's daily note": false,
|
||||||
"templates:Insert template": false,
|
"templates:Insert template": false,
|
||||||
"command-palette:Open command palette": false
|
"command-palette:Open command palette": false,
|
||||||
|
"obsidian-git:Open Git source control": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"active": "a0e3a8c10d55aaec",
|
"active": "a0e3a8c10d55aaec",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
|
"2025/macOS automount network share.md",
|
||||||
|
"2025/macOS autodetect USB.md",
|
||||||
|
"2025/review-niora-aug-2025-draft.md",
|
||||||
"2021/Sate babi.md",
|
"2021/Sate babi.md",
|
||||||
"2025/review-niora-aug-2025.md",
|
|
||||||
"2025/Todoist + gcal timeblocking-daytheming.md",
|
"2025/Todoist + gcal timeblocking-daytheming.md",
|
||||||
"2025/Tuinhuis specs.md",
|
"2025/Tuinhuis specs.md",
|
||||||
"2025/vacation-yoga-retreat-weekend-limburg-w32-8to19-aug.md",
|
"2025/vacation-yoga-retreat-weekend-limburg-w32-8to19-aug.md",
|
||||||
"2025/Verkoop macBookPro11,1 Marktplaats.md",
|
"2025/Verkoop macBookPro11,1 Marktplaats.md",
|
||||||
"2025/macOS autodetect USB.md",
|
|
||||||
"2025/Backups on macOS.md",
|
"2025/Backups on macOS.md",
|
||||||
"2025/Brewlog 2025.md",
|
"2025/Brewlog 2025.md",
|
||||||
"2025/freepik-randy-37-jaar-ecard-202507221949326aqr.png",
|
"2025/freepik-randy-37-jaar-ecard-202507221949326aqr.png",
|
||||||
|
|
@ -191,7 +193,6 @@
|
||||||
"2025/images/Screenshot 2025-01-02 at 21.36.20.png",
|
"2025/images/Screenshot 2025-01-02 at 21.36.20.png",
|
||||||
"2025/goede-voornemens-2025.md",
|
"2025/goede-voornemens-2025.md",
|
||||||
"2025/Hop inventory 2025-03-07.md",
|
"2025/Hop inventory 2025-03-07.md",
|
||||||
"2025/macOS automount network share.md",
|
|
||||||
"2025/macOS homebrew notes.md",
|
"2025/macOS homebrew notes.md",
|
||||||
"2025/macos-old-installer-links.md",
|
"2025/macos-old-installer-links.md",
|
||||||
"2025/Signaleringsplan jerry jacobs bipolair 1 versie 5 FINAL (18-03-2025).pdf",
|
"2025/Signaleringsplan jerry jacobs bipolair 1 versie 5 FINAL (18-03-2025).pdf",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue