Skip to content

Instantly share code, notes, and snippets.

@Devendra0110
Created November 26, 2024 05:58
Show Gist options
  • Save Devendra0110/ecd83addac9d38f6c84c7f721775758f to your computer and use it in GitHub Desktop.
Save Devendra0110/ecd83addac9d38f6c84c7f721775758f to your computer and use it in GitHub Desktop.
Vs code settings json
{
"security.workspace.trust.untrustedFiles": "open",
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "Monokai Vibrant",
"explorer.confirmDelete": false,
"workbench.startupEditor": "newUntitledFile",
"terminal.integrated.fontFamily": "'DroidSansMono Nerd Font'",
"editor.fontFamily": "FiraCode Nerd Font",
"editor.fontLigatures": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.fixAll.tslint": "explicit"
},
"editor.copyWithSyntaxHighlighting": false,
"gitlens.defaultDateFormat": null,
"gitlens.defaultDateShortFormat": null,
"gitlens.defaultTimeFormat": null,
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.autoClosingTags": true,
"editor.cursorSmoothCaretAnimation": "on",
"editor.mouseWheelZoom": false,
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"window.titleBarStyle": "native",
"editor.minimap.enabled": false,
"extensions.ignoreRecommendations": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"search.exclude": {
"**/dist": true,
"**/Pods": true,
"**/node_modules/**":true
},
"files.exclude": {
"**/dist": false,
"**/node_modules": true,
"*/**/node_modules/**": true,
"**/Pods": true
},
"files.watcherExclude": {
"": true,
"**/Pods":true,
},
"terminal.external.osxExec": "iTerm.app",
"terminal.explorerKind": "external",
"git.ignoredRepositories": [
"/Users/devendragaud/.vscode/extensions/stepsize.stepsize-1.0.14/resources/demo-repository"
],
"workbench.editorAssociations": {
"*.svg": "default",
"*.sql": "default"
},
"editor.largeFileOptimizations": false,
"editor.unicodeHighlight.invisibleCharacters": false,
"workbench.editor.empty.hint": "hidden",
"workbench.editor.showTabs": "multiple",
"gitlens.graph.layout": "editor",
"gitlens.graph.minimap.dataType": "lines",
"gitlens.graph.minimap.enabled": false,
"workbench.layoutControl.enabled": false,
"window.customTitleBarVisibility": "never",
"gitlens.ai.experimental.provider": "openai",
"gitlens.ai.experimental.openai.model": "gpt-3.5-turbo-1106",
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"window.nativeTabs": true,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.autoSave": "onFocusChange",
"diffEditor.ignoreTrimWhitespace": true,
"gitlens.mode.active": "zen",
"gitlens.ai.experimental.model": "openai:gpt-3.5-turbo",
"codium.enable": false,
"workbench.sideBar.location": "right",
"editor.fontSize": 12,
"[graphql]": {},
"liveServer.settings.donotShowInfoMsg": true,
"gitlens.views.launchpad.files.layout": "list",
"workbench.editor.wrapTabs": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment