Last active
April 2, 2022 23:44
-
-
Save pratikdevdas/e37a1bde1ec86d6346853b65ccec6412 to your computer and use it in GitHub Desktop.
Vscode 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
//global settings of my vs code | |
{ | |
"workbench.activityBar.visible": true, | |
"explorer.confirmDelete": false, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"liveServer.settings.donotVerifyTags": true, | |
"files.associations": { | |
"*.js": "javascript" | |
}, | |
"git.enableSmartCommit": true, | |
"terminal.integrated.tabs.enabled": true, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"files.exclude": { | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true | |
}, | |
"eslint.format.enable": true, | |
"gitlens.advanced.messages": { | |
"suppressGitMissingWarning": true, | |
"suppressImproperWorkspaceCasingWarning": true | |
}, | |
"explorer.confirmDragAndDrop": false, | |
"thunder-client.codeSnippetLanguage": "cs-httpclient", | |
"terminal.integrated.defaultProfile.windows": "Git Bash", | |
"workbench.iconTheme": "bearded-icons", | |
"emmet.includeLanguages": { | |
"vue-html": "html", | |
"javascript": "javascriptreact" | |
}, | |
"editor.smoothScrolling": true, | |
"editor.cursorSmoothCaretAnimation": true, | |
"editor.fontFamily": "'Fira Code', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'", | |
"editor.cursorBlinking": "expand", | |
"workbench.colorCustomizations": { | |
"editorCursor.foreground": "#ffff00", | |
"terminalCursor.foreground": "#ffff00" | |
}, | |
"workbench.colorTheme": "Bearded Theme Surprising Watermelon", | |
"bracketPairColorizer.depreciation-notice": false, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"editor.fontSize": 16, | |
"liveSassCompile.settings.formats": [ | |
{ | |
"format": "expanded", | |
"extensionName": ".css", | |
"savePath": "/dist/css" | |
} | |
], | |
"vscode-edge-devtools.mirrorEdits": true, | |
"vscode-edge-devtools.fallbackRevision": "@a1c1ea02160226bf4a0831a74f06de8edf55ffcf", | |
"editor.accessibilitySupport": "off", | |
"vscode-edge-devtools.webhint": false | |
} |
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
//put it in settings.json of .vscode | |
//react intellisense | |
{ | |
"emmet.triggerExpansionOnTab": true, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment