Last active
November 28, 2019 14:51
-
-
Save jamesrcounts/a233e02d99a79600a742bb3b59ac9fff 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
{ | |
"files.autoSave": "afterDelay", | |
"workbench.colorTheme": "Visual Studio Light", | |
"cSpell.userWords": [ | |
"Kubernetes", | |
"addin", | |
"kubectl", | |
"nuget" | |
], | |
"workbench.iconTheme": "material-icon-theme", | |
"window.zoomLevel": 1, | |
"editor.rulers": [ | |
80 | |
], | |
"editor.renderWhitespace": "all", | |
"git.autofetch": true, | |
"git.enableSmartCommit": true, | |
"explorer.confirmDragAndDrop": false, | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "Fira Code", | |
"terminal.integrated.fontFamily": "monospace", | |
"editor.formatOnType": true, | |
"cSpell.language": "en,en-US", | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[markdown]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.wordWrap": "wordWrapColumn", | |
"editor.wordWrapColumn": 80 | |
}, | |
"markdown.extension.showExplorer": true, | |
"markdown.extension.toc.githubCompatibility": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment