Last active
November 5, 2023 06:50
-
-
Save vanuyshka/d0a40f69696dd536396b75b7f0a3f14f to your computer and use it in GitHub Desktop.
VSCode Settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"diffEditor.ignoreTrimWhitespace": false, | |
"docker.showStartPage": false, | |
"editor.accessibilitySupport": "off", | |
"editor.cursorStyle": "block", | |
"editor.dragAndDrop": false, | |
"editor.fontFamily": "'Fira Code', Iosevka, Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 13, | |
"editor.inlineSuggest.enabled": true, | |
"editor.lineNumbers": "relative", | |
"editor.rulers": [ | |
80, | |
120 | |
], | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"files.associations": { | |
"**/.ssh/config.d/*.conf": "ssh_config" | |
}, | |
"git.autofetch": true, | |
"git.confirmSync": false, | |
"git.suggestSmartCommit": false, | |
"github.copilot.enable": { | |
"*": true, | |
"markdown": false, | |
"plaintext": false, | |
"yaml": true | |
}, | |
"http.proxy": "", | |
"http.proxyStrictSSL": true, | |
"mdb.sendTelemetry": false, | |
"python.showStartPage": false, | |
"redhat.telemetry.enabled": false, | |
"settingsSync.ignoredExtensions": [], | |
"settingsSync.ignoredSettings": [ | |
"http.proxy", | |
"http.proxyStrictSSL" | |
], | |
"telemetry.telemetryLevel": "off", | |
"terminal.external.osxExec": "iTerm.app", | |
"terminal.integrated.defaultProfile.osx": "fish", | |
"terminal.integrated.fontFamily": "Fira Code", | |
"terminal.integrated.fontSize": 13, | |
"window.commandCenter": false, | |
"workbench.colorTheme": "Dracula", | |
"workbench.startupEditor": "none", | |
"yaml.customTags": [], | |
"[javascript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"[markdown]": { | |
"editor.defaultFormatter": "darkriszty.markdown-table-prettify" | |
}, | |
"[python]": { | |
"editor.defaultFormatter": "ms-python.autopep8" | |
}, | |
"[terraform-vars]": { | |
"editor.defaultFormatter": "hashicorp.terraform" | |
}, | |
"[terraform]": { | |
"editor.defaultFormatter": "hashicorp.terraform" | |
}, | |
"[yaml]": { | |
"editor.defaultFormatter": "redhat.vscode-yaml" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment