Skip to content

Instantly share code, notes, and snippets.

@macalbert
Last active February 4, 2025 17:47
Show Gist options
  • Save macalbert/78959cc362f48ea0e38a9341adb14987 to your computer and use it in GitHub Desktop.
Save macalbert/78959cc362f48ea0e38a9341adb14987 to your computer and use it in GitHub Desktop.
Visual Studio Code `settings,json`
{
"redhat.telemetry.enabled": false,
"editor.inlineSuggest.enabled": true,
"git.autofetch": true,
"git.enableSmartCommit": true,
"json.schemas": [],
"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"
],
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"editor.suggest.showMethods": true,
"editor.suggest.preview": true,
"editor.acceptSuggestionOnEnter": "on",
"editor.snippetSuggestions": "top",
"breadcrumbs.showBooleans": false,
"git.confirmSync": false,
"githubPullRequests.pullBranch": "never",
"explorer.confirmDelete": false,
"githubPullRequests.createOnPublishBranch": "never",
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell"
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
"Git Bash": {
"source": "Git Bash"
},
"Ubuntu (WSL)": {
"path": "C:\\Windows\\System32\\wsl.exe",
"args": ["-d", "Ubuntu"]
}
},
"terminal.integrated.defaultProfile.windows": "PowerShell",
"terminal.integrated.enableMultiLinePasteWarning": "never",
"workbench.sideBar.location": "right",
"workbench.editor.showTabs": "multiple",
"editor.scrollbar.horizontal": "auto",
"editor.overviewRulerBorder": false,
"editor.hideCursorInOverviewRuler": true,
"editor.guides.indentation": false,
"indenticator.width": 1,
"indenticator.color.dark": "rgba(255,255,255,0.3)",
"workbench.startupEditor": "none",
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[python]": {
"editor.formatOnType": true
},
"python.testing.autoTestDiscoverOnSaveEnabled": true,
"explorer.confirmDragAndDrop": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.updateImportsOnFileMove.enabled": "always",
"git.openRepositoryInParentFolders": "always",
"terminal.integrated.fontSize": 16,
"editor.fontSize": 18,
"debug.console.fontSize": 17,
"markdown.preview.fontSize": 17,
"editor.fontWeight": "normal",
"security.workspace.trust.untrustedFiles": "open",
"files.associations": {
".env*": "properties",
"*.sh": "shellscript"
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "keyword.other.dotenv",
"settings": {
"foreground": "#FF000000"
}
}
]
},
"workbench.iconTheme": "material-icon-theme",
"editor.matchBrackets":"never",
"breadcrumbs.enabled": true,
"editor.formatOnPaste": false,
"editor.formatOnType": false,
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "file",
"files.autoSave": "afterDelay",
"editor.minimap.size": "fill",
"editor.minimap.renderCharacters": false,
"explorer.confirmPasteNative": false,
"editor.cursorBlinking": "expand",
"[typescriptreact]": {
"editor.defaultFormatter": "biomejs.biome"
},
"diffEditor.ignoreTrimWhitespace": true,
"[github-actions-workflow]": {
"editor.defaultFormatter": "biomejs.biome"
},
"github.copilot.editor.enableAutoCompletions": true,
"workbench.colorTheme": "Monokai",
"[jsonc]": {
"editor.defaultFormatter": "biomejs.biome"
},
"eslint.format.enable": true,
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"editor.tabSize": 2,
"editor.insertSpaces": true,
"python.createEnvironment.trigger": "off",
"git.replaceTagsWhenPull": true,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "underline",
"terminal.integrated.enableVisualBell": true,
"gitlens.advanced.messages": {
"suppressIntegrationRequestTimedOutWarning": true
},
"extensions.ignoreRecommendations": true,
"gitlens.views.commitDetails.files.layout": "tree",
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
}
}
@macalbert
Copy link
Author

macalbert commented Feb 2, 2024

Here you will find my current Visual Studio Code settings 🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment