Created
April 25, 2018 14:44
-
-
Save dkavraal/f8da48d40d0328808513eaad5b6b9fb7 to your computer and use it in GitHub Desktop.
vscode user settings
This file contains hidden or 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
{ | |
"workbench.iconTheme": "material-icon-theme", | |
"explorer.confirmDelete": false, | |
"terminal.external.osxExec": "iTerm.app", | |
"terminal.integrated.fontFamily": "Meslo LG M for Powerline", | |
"terminal.integrated.shellArgs.osx": ["-l", "-Y", "-X", "-M", "-0", "-8"], | |
"terminal.integrated.lineHeight": 1.2, | |
"terminal.integrated.env.osx": { | |
"LC_CTYPE": "UTF-8", | |
"COLORFGBG": "15;0", | |
"COLORTERM": "truecolor", | |
"COMMAND_MODE": "unix2003" | |
}, | |
"workbench.colorTheme": "One Dark+ (Sublime)", | |
"python.envFile": "${workspaceFolder}/.env", | |
"python.autoComplete.extraPaths": ["${workspaceFolder}", | |
"${workspaceFolder}/src", | |
"~/Library/Google/google-cloud-sdk/platform/google_appengine"], | |
"python.formatting.provider": "autopep8", | |
"python.linting.enabled": true, | |
"python.linting.pylintEnabled": true, | |
"python.linting.flake8Enabled": false, | |
"python.linting.pylintArgs": ["--extension-pkg-whitelist", "ujson,google-cloud-datastore,google-cloud-storage"], | |
"python.globalModuleInstallation": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"files.exclude": { | |
"**/.git": true, | |
"**/.DS_Store": true, | |
".vscode": true, | |
"**/__pycache__": true, | |
"**/**/*.pyc": true | |
}, | |
"editor.rulers": [79], | |
"files.insertFinalNewline": true, | |
"code-runner.cwd": "${workspaceFolder}", | |
"code-runner.executorMap": { | |
"python": "venv/bin/python " | |
}, | |
"git.autofetch": true, | |
"git.confirmSync": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment