Skip to content

Instantly share code, notes, and snippets.

@robertlugg
Created May 29, 2020 23:56
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 robertlugg/811b4e623761156444e65c5958511167 to your computer and use it in GitHub Desktop.
Save robertlugg/811b4e623761156444e65c5958511167 to your computer and use it in GitHub Desktop.

{ "editor.insertSpaces": true, "editor.fontFamily": "JetBrains Mono, Cascadia Code PL, Droid Sans Mono", "editor.fontLigatures": true, "editor.minimap.showSlider": "always", "editor.multiCursorModifier": "ctrlCmd", "editor.renderControlCharacters": true, "editor.renderIndentGuides": true, "editor.renderWhitespace": "boundary", "editor.rulers": [100], // "files.eol": "\n", // Linux. \r\s is Windows "files.associations": { ".blk": "python", ".pjx": "python", ".mac": "tcl", ".alg": "tcl", ".wfc": "tcl", ".tk": "tcl", ".jinja2": "jinja-py" }, "files.exclude": { "**/.pyc": {"when": "$(basename).py"}, "**/pycache": true }, "git.ignoreLegacyWarning": true, "python.analysis.logLevel": "Trace", "python.autoComplete.addBrackets": true, "python.dataScience.sendSelectionToInteractiveWindow": true, "python.formatting.provider": "black", "python.jediEnabled": false, "python.linting.enabled": false, "python.linting.mypyEnabled": true, "python.linting.pylintEnabled": false, "python.linting.pycodestyleArgs": [ "--ignore=E111,E114,E265", "--max-line-length=100" ], "python.linting.pycodestyleEnabled": false, "python.pythonPath": "C:\Users\rober\.conda\envs\playground_3.6.8\python.exe", "terminal.integrated.fontFamily": "Cascadia Code PL", "terminal.integrated.shell.linux": "/bin/bash", "window.zoomLevel": 0, "workbench.colorTheme": "Visual Studio Light", // "vsicons.dontShowNewVersionMessage": true, "editor.fontSize": 16, "workbench.tree.indent": 30, "terminal.integrated.inheritEnv": false, "editor.suggestSelection": "first", // "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", "update.mode": "none", "editor.mouseWheelZoom": true, "debug.console.fontFamily": "Cascadia Code PL" }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment