c85ce09410
This commit updates the template settings To use the built-in VS Code git integration instead of Git Automator. - Automatically stage all changes "git.enableSmartCommit": true, - Automatically push & pull changes to the remote after committing "git.postCommitCommand": "sync" This feature could be improved further By setting a default key-binding to Git: Commit All, And/or by automatically committing on save or focus change For the most SaaS-like experience.
13 lines
347 B
JSON
13 lines
347 B
JSON
{
|
|
"editor.minimap.enabled": false,
|
|
"editor.fontLigatures": true,
|
|
"editor.wrappingIndent": "indent",
|
|
"editor.overviewRulerBorder": false,
|
|
"editor.lineHeight": 24,
|
|
"workbench.colorTheme": "Gray Matter Light",
|
|
"[markdown]": {
|
|
"editor.quickSuggestions": true
|
|
},
|
|
"git.enableSmartCommit": true,
|
|
"git.postCommitCommand": "sync"
|
|
}
|