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.
26 lines
723 B
JSON
26 lines
723 B
JSON
{
|
|
// See http://go.microsoft.com/fwlink/?LinkId=827846
|
|
// for the documentation about the extensions.json format
|
|
"recommendations": [
|
|
// Foam's own extension
|
|
"foam.foam-vscode",
|
|
|
|
// Prettier for auto formatting code
|
|
"esbenp.prettier-vscode",
|
|
|
|
// GitLens for seeing version history inline
|
|
"eamodio.gitlens",
|
|
|
|
// Tons of markdown goodies (lists, tables of content, so much more)
|
|
"yzhang.markdown-all-in-one",
|
|
|
|
// [[wiki-links]], backlinking etc
|
|
"kortina.vscode-markdown-notes",
|
|
|
|
// Adds `show graph` command that displays graph of linked notes
|
|
"tchayen.markdown-links",
|
|
|
|
// Understated grayscale theme (light and dark variants)
|
|
"philipbe.theme-gray-matter"
|
|
]
|
|
}
|