-
-
Save chespinoza/0eeb06cf2983c71c7e2793af90200d24 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
"python.formatting.provider": "black", | |
"python.formatting.blackArgs": [ | |
"--line-length", | |
"120" | |
], | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"editor.fontFamily": "'Source Code Pro', 'Courier New', monospace", | |
"terminal.integrated.fontFamily": "Menlo for Powerline", | |
"browser-preview.chromeExecutable": "\"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome\"", | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"python.jediEnabled": false, | |
"workbench.colorTheme": "Spacemacs - dark", | |
"window.zoomLevel": 0, | |
"editor.fontSize": 14, | |
"editor.fontLigatures": true, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": "keyword", | |
"settings": { | |
"fontStyle": "bold" | |
} | |
}, | |
{ | |
"scope": "storage", | |
"settings": { | |
"fontStyle": "bold" | |
} | |
}, | |
{ | |
"scope": "constant.language", | |
"settings": { | |
"fontStyle": "bold" | |
} | |
}, | |
{ | |
"scope": "support.class.builtin", | |
"settings": { | |
"fontStyle": "bold" | |
} | |
} | |
] | |
}, | |
"workbench.fontAliasing": "antialiased", | |
"editor.fontWeight": "600", | |
"editor.formatOnSave": true, | |
"editor.renderWhitespace": "none", | |
"editor.renderControlCharacters": true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment