Skip to content

Instantly share code, notes, and snippets.

@pratikdevdas
Last active April 2, 2022 23:44
Show Gist options
  • Save pratikdevdas/e37a1bde1ec86d6346853b65ccec6412 to your computer and use it in GitHub Desktop.
Save pratikdevdas/e37a1bde1ec86d6346853b65ccec6412 to your computer and use it in GitHub Desktop.
Vscode settings
//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
}
//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