Last active
June 6, 2024 14:55
-
-
Save omartrigui/413df4492b227d2ce3c51a0eb9c72ad1 to your computer and use it in GitHub Desktop.
My VSCode user settings
This file contains hidden or 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
{ | |
"[clojure]": { | |
"editor.autoClosingBrackets": "always", | |
"editor.autoClosingOvertype": "always", | |
"editor.formatOnPaste": true, | |
"editor.defaultFormatter": "betterthantomorrow.calva" | |
}, | |
"calva.prettyPrintingOptions": { | |
"enabled": true, | |
"width": 120, | |
"maxLength": 50, | |
"printEngine": "pprint" | |
}, | |
"security.workspace.trust.untrustedFiles": "open", | |
"git.autofetch": true, | |
"terminal.integrated.enableMultiLinePasteWarning": false, | |
"git.enableSmartCommit": true, | |
"git.allowForcePush": true, | |
"git.confirmForcePush": false, | |
"editor.inlineSuggest.enabled": true, | |
"workbench.startupEditor": "none", | |
"files.autoSave": "afterDelay", | |
"[markdown]": { | |
"editor.defaultFormatter": "yzhang.markdown-all-in-one" | |
}, | |
"git.confirmSync": false, | |
"cSpell.userWords": [ | |
"astext", | |
"gctx", | |
"middlewares", | |
"Nakadi", | |
"openapi", | |
"opentracing", | |
"pierone", | |
"resty", | |
"zalan", | |
"zerolog" | |
], | |
"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.renderWhitespace": "none", | |
"[python]": { | |
"editor.defaultFormatter": "ms-python.black-formatter", | |
"editor.formatOnSave": false | |
}, | |
"go.toolsManagement.autoUpdate": true, | |
"github.copilot.enable": { | |
"*": true, | |
"plaintext": false, | |
"markdown": false, | |
"scminput": false | |
}, | |
"calva.paredit.defaultKeyMap": "strict", | |
"update.mode": "none", | |
"window.zoomLevel": 1, | |
"search.exclude": { | |
"**/.git": true | |
}, | |
"application.shellEnvironmentResolutionTimeout": 20 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment