Created
January 11, 2019 17:35
-
-
Save tracker1/14f3cc8d1d7696c1ee631c92a0c06572 to your computer and use it in GitHub Desktop.
VS Code Configuration
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
.Net Core Tools | |
Add jsdoc comments | |
ASP.Net Core Snippets | |
ASP.Net core VS Code Extension Pack | |
ASP.Net Helper | |
AutoHotkey | |
Beautify | |
Better Comments | |
C# | |
C# Extensions | |
C# XML Documentation Comments | |
Docker | |
DotENV | |
EditorConfig for VS Code -- using .editorconfig for .Net project formatting shared with VS | |
ESLint | |
Git History | |
GitLense | |
Import Cost | |
JavaScript (ES6) code snippets | |
Material Icon Theme | |
npm | |
npm intellisense | |
PowerShell | |
Prettier - Code Formatter (the one with 6+ million downloads) | |
React Pure To Class | |
SQL Server (needs work) | |
SSH FS (needs work) | |
SSH Tooling | |
vscode-icons | |
XML Tools | |
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
{ | |
"editor.fontFamily": "Ligconsolata, Inconsolata, Consolas, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"editor.tabSize": 2, | |
"files.eol": "\n", | |
"terminal.integrated.shell.windows": "C:/Program Files/Git/usr/bin/bash.exe", | |
"terminal.integrated.shellArgs.windows": [], | |
"workbench.iconTheme": "vscode-icons", | |
"[json]": { | |
"editor.formatOnSave": true | |
}, | |
"[javascript]": { | |
"editor.formatOnSave": true | |
}, | |
"[html]": { | |
"editor.formatOnSave": true | |
}, | |
"[css]": { | |
"editor.formatOnSave": true | |
}, | |
"git.autofetch": true, | |
"gitlens.advanced.messages": { | |
"suppressShowKeyBindingsNotice": true | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
"window.zoomLevel": 0, | |
"beautify.language": { | |
"js": ["json"], | |
"css": ["css", "scss"], | |
"html": ["htm", "html"] | |
}, | |
"npm-intellisense.importES6": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment