Skip to content

Instantly share code, notes, and snippets.

@rnag
Created January 19, 2024 02:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rnag/7c6fb0ee3816df6ed72d7205727e1dd9 to your computer and use it in GitHub Desktop.
Save rnag/7c6fb0ee3816df6ed72d7205727e1dd9 to your computer and use it in GitHub Desktop.
VS Code (.vscode) - My Settings
Put below files in `.vscode` folder
{
"recommendations": [
"yzhang.markdown-all-in-one",
"ms-azuretools.vscode-docker",
"vscode-icons-team.vscode-icons",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint"
]
}
{
"files.autoSave": "onFocusChange",
"workbench.iconTheme": "vscode-icons",
"git.enableSmartCommit": true,
"git.autofetch": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"eslint.format.enable": true,
"git.confirmSync": false,
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 64,
"zenMode.centerLayout": true,
"editor.lineNumbers": "on",
"editor.quickSuggestions": {
"comments": "on",
"strings": "on",
"other": "on"
},
"editor.formatOnSave": true,
"editor.fontSize": 21,
"editor.lineHeight": 30,
"javascript.updateImportsOnFileMove.enabled": "always",
"markdown.extension.toc.omittedFromToc": {},
"markdown.extension.toc.levels": "1..4",
"git.postCommitCommand": "push",
"workbench.settings.applyToAllProfiles": ["git.postCommitCommand"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment