Last active
October 25, 2023 15:46
-
-
Save asadbek064/970263b2b42370c01d066545e12bcab4 to your computer and use it in GitHub Desktop.
vscod 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
| { | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.colorTheme": "Firefox Dark", | |
| "material-icon-theme.folders.theme": "specific", | |
| "workbench.startupEditor": "newUntitledFile", | |
| "workbench.editorAssociations": { | |
| "*.ipynb": "jupyter.notebook.ipynb" | |
| }, | |
| "liveshare.guestApprovalRequired": true, | |
| "zenMode.hideLineNumbers": false, | |
| "editor.formatOnSave": false, | |
| "explorer.confirmDelete": false, | |
| "explorer.sortOrder": "type", | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "liveServer.settings.donotShowInfoMsg": true, | |
| "[html]": { | |
| "editor.defaultFormatter": "vscode.html-language-features" | |
| }, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "python.showStartPage": false, | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "[json]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "editor.suggestSelection": "first", | |
| "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "editor.unicodeHighlight.ambiguousCharacters": false, | |
| "editor.cursorBlinking": "phase", | |
| "editor.cursorSmoothCaretAnimation": "on", | |
| "editor.fontSize": 16, | |
| "bracketPairColorizer.depreciation-notice": false, | |
| "[scss]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[css]": { | |
| "editor.defaultFormatter": "vscode.css-language-features" | |
| }, | |
| "zenMode.centerLayout": false, | |
| "[vue]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[javascriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "files.autoSave": "afterDelay", | |
| "editor.inlineSuggest.enabled": true, | |
| "git.enableSmartCommit": true, | |
| "window.menuBarVisibility": "toggle", | |
| "workbench.statusBar.visible": false, | |
| "workbench.activityBar.visible": false, | |
| "editor.minimap.enabled": false | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment