Skip to content

Instantly share code, notes, and snippets.

@bricss
Last active April 12, 2024 16:41
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 bricss/53cfc83bf168f771b9686439bcf8c9a6 to your computer and use it in GitHub Desktop.
Save bricss/53cfc83bf168f771b9686439bcf8c9a6 to your computer and use it in GitHub Desktop.
VSCode settings.json
{
"debug.terminal.clearBeforeReusing": true,
"debug.toolBarLocation": "docked",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"editor.fontSize": 13,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.renderWhitespace": "all",
"editor.tabCompletion": "on",
"editor.tabSize": 2,
"editor.trimAutoWhitespace": true,
"explorer.openEditors.visible": 1,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"files.autoSave": "onWindowChange",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"git.openRepositoryInParentFolders": "never",
"html.format.wrapAttributes": "force",
"markdown.preview.fontSize": 13,
"npm.enableRunFromFolder": true,
"redhat.telemetry.enabled": false,
"search.seedOnFocus": true,
"search.seedWithNearestWord": true,
"search.showLineNumbers": true,
"search.smartCase": true,
"search.useGlobalIgnoreFiles": true,
"search.useParentIgnoreFiles": true,
"security.workspace.trust.enabled": false,
"terminal.integrated.copyOnSelection": true,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.fontSize": 13,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.profiles.windows": {
"GitBash": {
"icon": "terminal-bash",
"path": [
"${$env:ProgramFiles}\\Git\\bin\\bash.exe"
],
"source": "Git Bash",
},
},
"window.autoDetectColorScheme": true,
"window.closeWhenEmpty": true,
"window.commandCenter": true,
"window.restoreWindows": "all",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment