Last active
March 2, 2022 18:30
-
-
Save davenicoll/9654ce0ac57a291041098ab3d85e593b 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
{ | |
"telemetry.telemetryLevel": "off", | |
"editor.guides.bracketPairs": true, | |
"go.toolsManagement.autoUpdate" : true, | |
"explorer.compactFolders" : false, | |
"todo-tree.general.tags" : [ | |
"BUG", | |
"HACK", | |
"FIXME", | |
"TODO", | |
"XXX", | |
"[ ]", | |
"[x]" | |
], | |
"explorer.confirmDragAndDrop" : false, | |
"[python]" : { | |
"editor.defaultFormatter" : "ms-python.python" | |
}, | |
"yaml.validate": false, | |
"workbench.iconTheme" : "material-icon-theme", | |
"[json]" : { | |
"editor.defaultFormatter" : "esbenp.prettier-vscode" | |
}, | |
"editor.accessibilitySupport" : "off", | |
"workbench.editor.highlightModifiedTabs" : true, | |
"nightswitch.themeNight" : "SynthWave '84", | |
"cSpell.ignoreWords" : [ | |
"corp", | |
"hashi", | |
"templating", | |
"unintuitive" | |
], | |
"nightswitch.themeDay" : "Snazzy Light", | |
"workbench.colorTheme" : "Snazzy Light", | |
"nightswitch.sunrise" : "06:00", | |
"powermode.enabled" : true, | |
"todo-tree.regex.regex" : "(\/\/|#|<!--|;|\/\\*|^|^\\s*(-|\\d+.))\\s*($TAGS)", | |
"git.autofetch" : true, | |
"editor.fontFamily" : "'JetBrains Mono',Menlo, Monaco, 'Courier New', monospace", | |
"tabnine.experimentalAutoImports" : true, | |
"editor.cursorBlinking" : "expand", | |
"redhat.telemetry.enabled" : false, | |
"powermode.presets" : "flames", | |
"nightswitch.sunset": "19:30", | |
"terminal.integrated.fontSize": 14, | |
"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" | |
], | |
"workbench.colorCustomizations" : { | |
"tab.inactiveModifiedBorder" : "#ff0000", | |
"tab.unfocusedActiveModifiedBorder" : "#ff0000", | |
"tab.activeModifiedBorder" : "#ff0000", | |
"tab.unfocusedInactiveModifiedBorder" : "#ff0000", | |
"terminal.background":"#0b0b0b", | |
"terminal.foreground":"#babdb6", | |
"terminalCursor.background":"#ff0064", | |
"terminalCursor.foreground":"#ff0064", | |
"terminal.selectionBackground":"#fff900", | |
"terminal.ansiBlack":"#2a2828", | |
"terminal.ansiBlue":"#42a5f5", | |
"terminal.ansiBrightBlack":"#708284", | |
"terminal.ansiBrightBlue":"#42a5f5", | |
"terminal.ansiBrightCyan":"#00acc1", | |
"terminal.ansiBrightGreen":"#c3d82c", | |
"terminal.ansiBrightMagenta":"#d81b60", | |
"terminal.ansiBrightRed":"#ff5252", | |
"terminal.ansiBrightWhite":"#f5f5f5", | |
"terminal.ansiBrightYellow":"#ffc135", | |
"terminal.ansiCyan":"#00acc1", | |
"terminal.ansiGreen":"#c3d82c", | |
"terminal.ansiMagenta":"#d81b60", | |
"terminal.ansiRed":"#ff5252", | |
"terminal.ansiWhite":"#f5f5f5", | |
"terminal.ansiYellow":"#ffc135" | |
}, | |
"nightswitch.disableAutoSwitchNotifications" : true, | |
"security.workspace.trust.untrustedFiles" : "open", | |
"workbench.startupEditor": "none", | |
"cSpell.enableFiletypes": [ | |
"!python" | |
], | |
"python.linting.pylamaEnabled": true, | |
"python.linting.pylamaArgs": [ | |
"--max-line-length 300" | |
], | |
"python.formatting.provider": "black", | |
"yaml.schemas": { | |
"file:///Users/dave/.vscode/extensions/atlassian.atlascode-2.10.1/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml" | |
}, | |
"atlascode.jira.enabled": false, | |
"terminal.integrated.env.osx": { | |
"FIG_NEW_SESSION": "1" | |
}, | |
"powermode.shake.enabled": false, | |
"powermode.explosions.size": 3, | |
"git.confirmSync": false, | |
"git.enableSmartCommit": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment