Last active
September 23, 2017 21:17
-
-
Save thrashr888/8819a0cb82cbc037f138504e06ed1773 to your computer and use it in GitHub Desktop.
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.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/.DS_Store": true, | |
"**/tmp": true, | |
"**/yarn_cache": true | |
// "**/env": true | |
}, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/node_modules/**": true, | |
"**/env/**": true | |
}, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/htdocs/components": true, | |
"**/yarn_cache": true | |
// "**/env/src": true | |
}, | |
"auto-close-tag.SublimeText3Mode": true, | |
"editor.renderWhitespace": "boundary", | |
"editor.rulers": [110], | |
"editor.scrollBeyondLastLine": false, | |
"editor.cursorBlinking": "phase", | |
"editor.renderIndentGuides": true, | |
"editor.renderLineHighlight": "gutter", | |
"editor.stablePeek": true, | |
"editor.formatOnSave": false, | |
"git.path": "/usr/local/bin/git", | |
"markdown.preview.fontSize": 16, | |
"extensions.autoUpdate": true, | |
"docker.enableLinting": true, | |
"jshint.enable": false, | |
"eslint.enable": true, | |
"workbench.activityBar.visible": true, | |
"vsicons.projectDetection.autoReload": true, | |
"window.zoomLevel": 0, | |
"prettier.singleQuote": true, | |
"prettier.trailingComma": "es5", | |
"prettier.printWidth": 110, | |
"debug.inlineValues": true, | |
// "editor.fontFamily": "Fira Code", | |
// "editor.fontFamily": "Inconsolata", | |
// "editor.fontFamily": "Operator Mono", | |
"editor.fontFamily": "Operator Mono", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 14, | |
"workbench.commandPalette.preserveInput": true, | |
"[python]": { | |
"editor.rulers": [79] | |
}, | |
"html.format.indentHandlebars": true, | |
"python.unitTest.nosetestsEnabled": true, | |
"python.unitTest.noseTestArgs": ["--stop", "--match=REGEX", "--where", "tests/"], | |
"python.linting.pylintEnabled": false, | |
"python.linting.pep8Enabled": true, | |
"python.linting.enabled": true, | |
"python.linting.lintOnSave": true, | |
"python.linting.maxNumberOfProblems": 25, | |
"terraform.formatOnSave": true, | |
"editor.minimap.enabled": true, | |
"editor.minimap.renderCharacters": false, | |
"workbench.colorTheme": "Dark (Monokai)", | |
"workbench.editor.showIcons": true, | |
"jscs.enable": false, | |
"workbench.iconTheme": "vs-minimal", | |
"[handlebars]": { | |
"editor.formatOnSave": false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment