Created
January 12, 2019 16:19
-
-
Save rafaelcs/c090a14800b228f05a624aba76e419de to your computer and use it in GitHub Desktop.
My user settings file to VS Code
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.fontSize": 14, | |
"terminal.external.osxExec": "iTerm.app", | |
"terminal.explorerKind": "external", | |
"terminal.integrated.fontFamily": "Meslo LG M for Powerline", | |
"terminal.integrated.fontSize": 12, | |
"python.pythonPath": "env/bin/python3", | |
"editor.autoIndent": true, | |
"workbench.editor.enablePreview": false, | |
"workbench.settings.openDefaultSettings": false, | |
"explorer.openEditors.visible": 0, | |
"workbench.iconTheme": "vscode-icons", | |
"editor.detectIndentation": true, | |
"workbench.colorTheme": "Spacegray Ocean Dark", | |
"python.linting.enabled": true, | |
"python.linting.lintOnSave": true, | |
"python.linting.pep8Enabled": true, | |
"python.linting.pep8Args": ["--ignore=W391, E501"], | |
"files.autoSaveDelay": 1000, | |
"files.autoSave": "afterDelay", | |
"terminal.integrated.shell.osx": "/bin/zsh", | |
"files.exclude": { | |
"**/__pycache__": true, | |
"**/.pyc": true, | |
"**/.pytest_cache": true, | |
"**/.DS_Store": true | |
}, | |
"[python]": { | |
"editor.insertSpaces": true, | |
"editor.tabSize": 4, | |
}, | |
"[ruby]": { | |
"editor.insertSpaces": true, | |
"editor.tabSize": 2 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment