Created
September 28, 2023 19:39
-
-
Save akash02-das/fc25544f7be347e5228db1fba739c3ae to your computer and use it in GitHub Desktop.
My VS Code settings
This file contains hidden or 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
| { | |
| // Editor | |
| "editor.guides.bracketPairs": true, | |
| "editor.fontSize": 16, | |
| "editor.fontFamily": "Fira Code", | |
| "editor.wordWrap": "on", | |
| "editor.tabSize": 2, | |
| "files.autoSave": "onFocusChange", | |
| // Workbench settings | |
| "workbench.colorTheme": "Community Material Theme Ocean High Contrast", | |
| "workbench.iconTheme": "vscode-icons", | |
| // config related to code formatting | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.formatOnSave": true, | |
| "[javascript]": { | |
| "editor.formatOnSave": true, | |
| "editor.defaultFormatter": null | |
| }, | |
| "[javascriptreact]": { | |
| "editor.formatOnSave": true | |
| }, | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": true, | |
| "source.fixAll.tslint": true, | |
| "source.organizeImports": true, | |
| "source.fixAll": true | |
| }, | |
| "eslint.alwaysShowStatus": true, | |
| // Terminal | |
| "terminal.integrated.fontSize": 16, | |
| "terminal.integrated.fontWeight": "normal", | |
| "terminal.integrated.cursorStyle": "line", | |
| "terminal.integrated.cursorBlinking": true, | |
| "terminal.integrated.fontFamily": "monospace", | |
| "editor.formatOnType": true, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "explorer.confirmDragAndDrop": false, | |
| "explorer.confirmDelete": false, | |
| "git.confirmSync": false, | |
| "javascript.preferences.quoteStyle": "single", | |
| "prettier.jsxSingleQuote": true, | |
| "prettier.singleQuote": true | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment