Skip to content

Commit 0dd7044

Browse files
committed
Enable includeFileList by default
1 parent f6cdf0f commit 0dd7044

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ npm run build
4343
| Debounce delay (seconds) | Wait time before committing | 30 |
4444
| Auto push after commit | Push to remote after commit | Off |
4545
| Commit message template | Custom message format | `vault backup: {{date}} {{time}}` |
46-
| Include file list in commit body | List changed files in body | Off |
46+
| Include file list in commit body | List changed files in body | On |
4747
| Git binary path | Path to git executable | `git` |
4848
| Ignore .obsidian directory | Exclude config folder from triggers | On |
4949

data.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"autoCommit": false,
3+
"debounceSeconds": 30,
4+
"commitTemplate": "vault backup: {{date}} {{time}}",
5+
"includeFileList": true,
6+
"autoPush": false,
7+
"gitPath": "git",
8+
"ignoreObsidianDir": true
9+
}

main.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/settings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const DEFAULT_SETTINGS: AutoGitSettings = {
1616
autoCommit: false,
1717
debounceSeconds: 30,
1818
commitTemplate: "vault backup: {{date}} {{time}}",
19-
includeFileList: false,
19+
includeFileList: true,
2020
autoPush: false,
2121
gitPath: "git",
2222
ignoreObsidianDir: true,

0 commit comments

Comments
 (0)