Skip to content

Instantly share code, notes, and snippets.

@rob3c
Last active July 22, 2026 04:14
Show Gist options
  • Select an option

  • Save rob3c/b1819330b9ea05eebb9c9caeb0c6b44f to your computer and use it in GitHub Desktop.

Select an option

Save rob3c/b1819330b9ea05eebb9c9caeb0c6b44f to your computer and use it in GitHub Desktop.
Visual Studio Code (vscode) Custom Settings
// Place your settings in this file to overwrite the default settings
{
"redhat.telemetry.enabled": false,
//-------- Editor configuration --------
"[html][json][jsonc][md][shellscript][xml]": {
// "editor.detectIndentation": true,
"editor.tabSize": 2
},
"workbench.colorCustomizations": {
"[Solarized Light]": {
"editor.inactiveSelectionBackground": "#CCC",
"editor.selectionBackground": "#adadad"
}
},
"editor.autoIndent": "full",
"editor.fontSize": 12,
"editor.tabSize": 4,
"editor.insertSpaces": true,
// "editor.wordWrap": "bounded",
"editor.wordWrapColumn": 99,
"editor.wrappingIndent": "none",
"editor.minimap.enabled": false,
"editor.mouseWheelScrollSensitivity": 0.33, // one text line since 1 = 3 lines
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
},
"editor.quickSuggestionsDelay": 100,
"editor.suggestOnTriggerCharacters": false,
"editor.renderWhitespace": "all",
//-------- Window configuration --------
"window.reopenFolders": "all",
//-------- Files configuration --------
// Configure glob patterns for excluding files and folders.
"files.exclude": {
"**/__pycache__": true,
"**/.DS_Store": true,
"**/.git": true,
"**/.svn": true,
"**/*.pyc": true
},
"files.associations": {
"*.html.original": "html",
"*.stylelintrc": "jsonc",
"*.hq2016": "jsonc",
"*.hq2017": "jsonc",
"*.ts-old": "typescript",
"*.ts-save": "typescript",
"*.js-save": "javascript",
"*.opal": "vb",
"nuget*.config": "xml",
"*.yml.njk": "yaml",
"*.toml": "toml"
},
"files.insertFinalNewline": true,
//-------- File Explorer configuration --------
"explorer.autoReveal": false,
//-------- Search configuration --------
"search.exclude": {
"**/.pnpm-store": true,
"**/.tmp": true,
"**/bin": true,
"**/data": true,
"**/hooks": true,
"**/node_modules": true,
"**/platforms": true,
"**/plugins": true,
"**/resources": true,
"**/typings": true,
"**/www/**/*.map": true,
"**/www/**/*.min.js": true
},
//-------- Git configuration --------
//"git.autofetch": true,
//-------- Telemetry configuration --------
"extensions.ignoreRecommendations": true,
"workbench.startupEditor": "none",
"extensions.autoUpdate": "off",
"update.enableWindowsBackgroundUpdates": false,
"update.mode": "start",
"diffEditor.ignoreTrimWhitespace": false,
//-------- JavaScript configuration --------
// Controls how JavaScript IntelliSense works.
// Always include all words from the current document.
//"javascript.suggest.alwaysAllWords": false
"editor.showFoldingControls": "always",
"workbench.colorTheme": "Dark+",
"editor.renderControlCharacters": true,
"editor.snippetSuggestions": "none",
"emmet.showExpandedAbbreviation": "never",
"workbench.enableExperiments": false,
"python.experiments.enabled": false,
"yaml.customTags": [
"!And",
"!And sequence",
"!If",
"!If sequence",
"!Not",
"!Not sequence",
"!Equals",
"!Equals sequence",
"!Or",
"!Or sequence",
"!FindInMap",
"!FindInMap sequence",
"!Base64",
"!Join",
"!Join sequence",
"!Cidr",
"!Ref",
"!Sub",
"!Sub sequence",
"!GetAtt",
"!GetAZs",
"!ImportValue",
"!ImportValue sequence",
"!Select",
"!Select sequence",
"!Split",
"!Split sequence"
],
"yaml.validate": false,
"cfnLint.path": "py -m cfnlint",
"aws.profile": "profile:default",
"aws.telemetry": false,
"workbench.editor.enablePreviewFromCodeNavigation": true,
"dotnet-test-explorer.enableTelemetry": false,
"dotnet-test-explorer.testProjectPath": "**/*Tests.csproj",
"yaml.schemas": {},
"docker.showStartPage": false,
"git.enableStatusBarSync": false,
"scm.showActionButton": false,
"telemetry.telemetryLevel": "off",
"terminal.explorerKind": "external",
"angular.view-engine": true,
"security.workspace.trust.untrustedFiles": "open",
"search.collapseResults": "alwaysCollapse",
"diffEditor.maxComputationTime": 0,
"window.restoreWindows": "none",
"[typescript]": {},
"files.watcherExclude": {
"**/.pnpm-store/*/**": true
},
"explorer.autoRevealExclude": {
"**/.pnpm-store": true
},
"window.zoomLevel": 1,
"diffEditor.useInlineViewWhenSpaceIsLimited": false,
"workbench.editor.empty.hint": "hidden",
"window.density.editorTabHeight": "compact",
"python.languageServer": "Pylance",
"python.analysis.typeCheckingMode": "standard",
"eslint.useFlatConfig": true,
"terminal.integrated.gpuAcceleration": "off",
"[python]": {
"diffEditor.ignoreTrimWhitespace": false,
"editor.formatOnSave": true,
// "editor.formatOnType": true,
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.rulers": [88],
"editor.wordBasedSuggestions": "off",
"editor.codeActionsOnSave": {
"source.fixAll.ruff": "explicit",
"source.organizeImports.ruff": "explicit"
}
},
"debug.internalConsoleOptions": "openOnSessionStart",
"go.delveConfig": {
"dlvLoadConfig": {
"maxStringLen": 5000,
"maxArrayValues": 1000,
}
},
"editor.detectIndentation": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"workbench.editor.revealIfOpen": true,
"[csharp]": {
"editor.maxTokenizationLineLength": 2500,
"editor.snippetSuggestions": "top",
"editor.suggest.showSnippets": false,
},
"dotnet.automaticallyCreateSolutionInWorkspace": false,
"debug.onTaskErrors": "showErrors",
"editor.suggestSelection": "recentlyUsed",
"dotnet.unitTests.runSettingsPath": "${workspaceFolder}/packages/functions/test/CsvToXlsxConsumer.Tests/test.local.runsettings",
"terminal.integrated.persistentSessionReviveProcess": "never",
"debug.openDebug": "openOnSessionStart",
"cmake.useCMakePresets": "always",
"cmake.options.statusBarVisibility": "icon",
"remote.autoForwardPortsSource": "hybrid",
"remote.autoForwardPorts": false,
"remote.restoreForwardedPorts": false,
"editor.trimWhitespaceOnDelete": true,
"terminal.integrated.stickyScroll.enabled": false,
"workbench.settings.applyToAllProfiles": [
"files.trimTrailingWhitespace"
],
"files.trimTrailingWhitespace": true,
"mesonbuild.downloadLanguageServer": true,
"chat.mcp.gallery.enabled": true,
"chat.disableAIFeatures": true,
"workbench.trustedDomains.promptInTrustedWorkspace": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment