Created
November 18, 2022 01:07
-
-
Save AlexSwensen/7d94f03418e3dbfa8934eb393df2200d to your computer and use it in GitHub Desktop.
a full copy of my local settings. I set these globally for me.
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
{ | |
"window.autoDetectColorScheme": true, | |
"workbench.preferredDarkColorTheme": "One Dark Pro", | |
"workbench.iconTheme": "vscode-icons", | |
"git.autofetch": true, | |
"editor.bracketPairColorization.enabled": true, | |
"files.autoSave": "onFocusChange", | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[yaml]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[vue]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"terminal.integrated.fontFamily": "\"MonoLisa\", \"MesloLGLDZ Nerd Font Mono\" ,\"FiraMono Nerd Font Mono\", Menlo, Monaco, 'Courier New', monospace", | |
"python.languageServer": "Pylance", | |
"vsicons.dontShowNewVersionMessage": true, | |
"workbench.editorAssociations": { | |
"*.ipynb": "jupyter-notebook" | |
}, | |
"redhat.telemetry.enabled": false, | |
"github.copilot.enable": { | |
"*": true, | |
"yaml": true, | |
"plaintext": true, | |
"markdown": true | |
}, | |
"editor.inlineSuggest.enabled": true, | |
"python.defaultInterpreterPath": "/usr/local/bin/python3", | |
"files.exclude": { | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true | |
}, | |
"workbench.editor.untitled.hint": "hidden", | |
"workbench.editor.revealIfOpen": true, | |
"wallaby.codeLensFeature.runTest": true, | |
"wallaby.alwaysOpenLocalWallabyAppUrl": true, | |
"editor.suggest.preview": true, | |
"files.eol": "\n", | |
"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" | |
], | |
"aws.telemetry": false, | |
"editor.fontFamily": "\"MonoLisa\", Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontLigatures": "'ss02' on", | |
"editor.lineHeight": 0, | |
"editor.fontSize": 12, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": "comment", | |
"settings": { | |
"fontStyle": "italic" | |
} | |
} | |
] | |
}, | |
"quokka.automaticRestart": true, | |
"editor.suggest.showMethods": true, | |
"editor.acceptSuggestionOnEnter": "on", | |
"editor.snippetSuggestions": "top", | |
"telemetry.telemetryLevel": "off", | |
"githubPullRequests.pullBranch": "never", | |
"editor.formatOnSave": true, | |
"peacock.favoriteColors": [ | |
{ | |
"name": "Angular Red", | |
"value": "#dd0531" | |
}, | |
{ | |
"name": "Azure Blue", | |
"value": "#007fff" | |
}, | |
{ | |
"name": "JavaScript Yellow", | |
"value": "#f9e64f" | |
}, | |
{ | |
"name": "Mandalorian Blue", | |
"value": "#1857a4" | |
}, | |
{ | |
"name": "Node Green", | |
"value": "#215732" | |
}, | |
{ | |
"name": "React Blue", | |
"value": "#61dafb" | |
}, | |
{ | |
"name": "Something Different", | |
"value": "#832561" | |
}, | |
{ | |
"name": "Svelte Orange", | |
"value": "#ff3d00" | |
}, | |
{ | |
"name": "Vue Green", | |
"value": "#42b883" | |
} | |
], | |
"workbench.colorTheme": "One Dark Pro" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment