Skip to content

Instantly share code, notes, and snippets.

@rafaelcs
Created January 12, 2019 16:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rafaelcs/c090a14800b228f05a624aba76e419de to your computer and use it in GitHub Desktop.
Save rafaelcs/c090a14800b228f05a624aba76e419de to your computer and use it in GitHub Desktop.
My user settings file to VS Code
{
"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