Skip to content

Instantly share code, notes, and snippets.

@omartrigui
Created March 15, 2024 16:13
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 omartrigui/413df4492b227d2ce3c51a0eb9c72ad1 to your computer and use it in GitHub Desktop.
Save omartrigui/413df4492b227d2ce3c51a0eb9c72ad1 to your computer and use it in GitHub Desktop.
VSCode settings
{
"[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
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment