Skip to content

Instantly share code, notes, and snippets.

@wozozo
Created May 7, 2018 10:22
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 wozozo/5f052ba426f7ed224a92dd990f11c19f to your computer and use it in GitHub Desktop.
Save wozozo/5f052ba426f7ed224a92dd990f11c19f to your computer and use it in GitHub Desktop.
{
"editor.fontSize": 15,
// "editor.fontFamily": "'Fira Mono', Menlo, Monaco, 'Courier New', monospace",
"editor.fontFamily": "'Hack', Menlo, Monaco, 'Courier New', monospace",
"atomKeymap.promptV3Features": true,
"files.trimTrailingWhitespace": true,
"files.associations": {
"*.jinja2": "jinja"
},
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"editor.trimAutoWhitespace": true,
"window.zoomLevel": 0,
"python.pythonPath": "/opt/local/bin/python3",
"python.formatting.autopep8Path": "/opt/local/bin/autopep8",
"python.disablePromptForFeatures": [
"pylint"
],
"extensions.ignoreRecommendations": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.flake8Path": "/opt/local/bin/flake8",
"python.linting.flake8Args": [
"--ignore=E501"
],
"workbench.startupEditor": "welcomePage",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment