Skip to content

Instantly share code, notes, and snippets.

@banjin
Last active October 28, 2021 10:18
Show Gist options
  • Save banjin/4890defbb60afe870141f67d4979ea33 to your computer and use it in GitHub Desktop.
Save banjin/4890defbb60afe870141f67d4979ea33 to your computer and use it in GitHub Desktop.
{
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "inline",
"editor.formatOnPaste": true,
"workbench.colorTheme": "Hyper Term Black",
"window.closeWhenEmpty": true,
"editor.renderWhitespace": "all",
"editor.find.seedSearchStringFromSelection": false,
"editor.fontFamily": "operator mono ssm",
"editor.fontSize": 12,
"files.hotExit": "onExit",
"files.trimTrailingWhitespace": true,
"editor.minimap.enabled": false,
"editor.cursorBlinking": "phase",
"python.formatting.provider": "black",
"editor.formatOnSave": true,
"editor.fontLigatures": true,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cursorBlinking": true,
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"terminal.external.osxExec": "Hyper.app",
"sync.gist": "0463963ef55f605e3304ac1b1badedce",
"sync.host": "",
"sync.pathPrefix": "",
"sync.quietSync": false,
"sync.askGistName": false,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"sync.autoDownload": true,
"sync.autoUpload": true,
"sync.lastUpload": "2018-07-08T18:28:24.413Z",
"sync.lastDownload": "2018-07-08T14:18:41.209Z",
"sync.forceDownload": false,
"phabricator-links.url": "https://code.kennethreitz.org/",
"python.envFile": "/Users/kennethreitz/.env",
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.flake8Path": "/usr/local/bin/flake8",
"python.formatting.blackPath": "/usr/local/bin/black",
"python.linting.lintOnSave": true,
"python.linting.ignorePatterns": [
".vscode/*.py",
"**/site-packages/**/*.py",
".eggs/**",
"patched/**",
"vendored/**"
],
"python.autoComplete.showAdvancedMembers": true,
"python.jediEnabled": true,
"python.autoComplete.preloadModules": [
"requests"
],
// "editor.formatOnType": true,
"files.exclude": {
"**/.git": true,
"**/*.pyc": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/__pycache__": true,
"**/*.egg-info": true,
"**/settings.json": true
},
"python.unitTest.pyTestEnabled": true,
"terminal.integrated.fontFamily": "operatormonossm nerd font",
"indentRainbow.updateDelay": 10,
"python.venvPath": "${workspaceDirectory}/.venv",
"git-autoconfig.configList": [
{
"user.email": "me@kennethreitz.org",
"user.name": "Kenneth Reitz"
},
{}
],
"workbench.iconTheme": null,
"terminal.explorerKind": "integrated",
"terminal.integrated.experimentalRestore": true,
"python.autoComplete.addBrackets": true,
"python.unitTest.useExperimentalDebugger": true,
"terminal.integrated.scrollback": 10000,
"editor.formatOnType": false,
"editor.matchBrackets": false,
"files.associations": {
"*.html": "jinja"
},
"window.zoomLevel": 0,
"bashIde.explainshellEndpoint": "http://localhost:5000",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment