Skip to content

Instantly share code, notes, and snippets.

@p10q
Last active December 27, 2023 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save p10q/eec8272fc0697b4c53bcd10c862ab6ce to your computer and use it in GitHub Desktop.
Save p10q/eec8272fc0697b4c53bcd10c862ab6ce to your computer and use it in GitHub Desktop.
vs code settings.json
{
"search.exclude": {
"env": true,
"src/*/build": true,
"build": true,
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true
},
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.accessibilitySupport": "off",
"editor.formatOnSave": true,
"files.watcherExclude": {
"**/build/**": true,
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/.hg/store/**": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"files.exclude": {
"**/.classpath": true,
"**/.DS_Store": true,
"**/.factorypath": true,
"**/.git": true,
"**/.hg": true,
"**/.project": true,
"**/.settings": true,
"**/.svn": true,
"**/*_report.html": true,
"**/CVS": true,
"apollo-overrides": true,
"env": true,
"packageInfo*": true,
"release-info": true,
"src/*/build": false
},
"terminal.explorerKind": "external",
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.suggestSelection": "first",
"editor.tabSize": 8,
"editor.cursorStyle": "line",
"editor.insertSpaces": false,
"editor.lineNumbers": "on",
"editor.wordSeparators": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-",
"editor.wordWrap": "off",
"workbench.editor.showTabs": false,
"workbench.tree.indent": 28,
"editor.snippetSuggestions": "top",
"workbench.activityBar.visible": false,
"liveServer.settings.donotShowInfoMsg": true,
"json.schemas": [],
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"workbench.startupEditor": "none",
"workbench.colorTheme": "Better Solarized Light",
"terminal.integrated.fontSize": 16,
"editor.fontSize": 16,
"telemetry.telemetryLevel": "off",
"terminal.integrated.env.osx": {
"IN_VSCODE": "true"
},
"terminal.integrated.env.linux": {
"IN_VSCODE": "true"
},
"editor.gotoLocation.multipleDefinitions": "goto",
"[typescriptreact]": {},
"security.workspace.trust.untrustedFiles": "open",
"workbench.list.automaticKeyboardNavigation": false,
"terminal.integrated.scrollback": 100000,
"workbench.editor.revealIfOpen": true,
"wallaby.suppressExpirationNotifications": true,
"quokka.suppressExpirationNotifications": true,
"window.nativeTabs": true,
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"vim.insertModeKeyBindings": [
{
"before": ["f", "d"],
"after": ["<Esc>"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment