Created
January 19, 2024 02:05
-
-
Save rnag/7c6fb0ee3816df6ed72d7205727e1dd9 to your computer and use it in GitHub Desktop.
VS Code (.vscode) - My Settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Put below files in `.vscode` folder |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"recommendations": [ | |
"yzhang.markdown-all-in-one", | |
"ms-azuretools.vscode-docker", | |
"vscode-icons-team.vscode-icons", | |
"esbenp.prettier-vscode", | |
"dbaeumer.vscode-eslint" | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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