Last active
May 29, 2018 19:05
-
-
Save riebschlager/b6bd9e7e09cbc4553cc7526349362a11 to your computer and use it in GitHub Desktop.
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.fontFamily": "DejaVu Sans Mono", | |
"workbench.colorTheme":"Default Dark+", | |
"prettier.tabWidth": 4, | |
"prettier.singleQuote": true, | |
"editor.wordWrapColumn": 0, | |
"editor.minimap.enabled": false, | |
"git.enableSmartCommit": true, | |
"git.autofetch": true, | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"window.zoomLevel": 0, | |
"python.linting.enabled": false, | |
"vetur.format.defaultFormatter.html": "js-beautify-html" | |
} |
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
{ | |
"csharp.suppressDotnetInstallWarning": true, | |
"python.linting.pylintPath": "/usr/local/bin/pylint", | |
"workbench.colorTheme": "Monokai", | |
"javascript.format.insertSpaceAfterKeywordsInControlFlowStatements": false, | |
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false, | |
"git.enableSmartCommit": true, | |
"editor.formatOnSave": true, | |
"editor.minimap.enabled": false, | |
"files.insertFinalNewline": true, | |
"html.format.wrapLineLength": 0, | |
"window.zoomLevel": 0, | |
"terminal.integrated.fontFamily": "Source Code Pro", | |
"terminal.integrated.fontSize": 14, | |
"editor.fontFamily": "Source Code Pro", | |
"editor.fontSize": 14, | |
"git.confirmSync": false, | |
"explorer.confirmDelete": false, | |
"beautify.ignore": [ | |
"*.html" | |
], | |
"explorer.confirmDragAndDrop": false, | |
"java.errors.incompleteClasspath.severity": "ignore", | |
"git.autofetch": true, | |
"files.exclude": { | |
"**/*.pyc": true, | |
"**/*.sqlite3": true, | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment