Last active
September 13, 2018 16:15
-
-
Save AdamHjerpe/4e8f1c96e3ecedc094ace768f6d33387 to your computer and use it in GitHub Desktop.
VSC config windows
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
{ | |
"editor.tabSize": 2, | |
"editor.lineHeight": 35, | |
"editor.fontSize": 14, | |
"editor.fontFamily": "Operator Mono Lig", | |
"editor.fontWeight": "100", | |
"editor.fontLigatures": true, | |
"workbench.activityBar.visible": false, | |
"workbench.colorTheme": "Snazzy Operator", | |
"workbench.statusBar.visible": true, | |
"explorer.openEditors.visible": 0, | |
"editor.minimap.enabled": false, | |
"bracketPairColorizer.forceIterationColorCycle": true, | |
"emmet.includeLanguages": { | |
"javascript": "html", | |
"vue-html": "html", | |
"plaintext": "jade" | |
}, | |
"emmet.useNewEmmet": true, | |
"emmet.triggerExpansionOnTab": true, | |
"emmet.showSuggestionsAsSnippets": true, | |
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe", | |
"terminal.integrated.shellArgs.windows": ["/K", "C:\\cmder\\.vscode.bat"], | |
"gitProjectManager.baseProjectsFolders": [ | |
"C:\\Users\\adam_", | |
"C:\\Users\\adam_\\Documents" | |
], | |
"git.autofetch": true, | |
"breadcrumbs.enabled": false, | |
"editor.formatOnPaste": false, | |
"editor.formatOnSave": false, | |
"editor.formatOnType": false, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"vue" | |
], | |
"liveServer.settings.donotShowInfoMsg": true, | |
"git.enableSmartCommit": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment