Skip to content

Instantly share code, notes, and snippets.

@shawalli
Last active September 10, 2018 14:54
Show Gist options
  • Save shawalli/ce0bcc52f704a4476e7b68082c61a108 to your computer and use it in GitHub Desktop.
Save shawalli/ce0bcc52f704a4476e7b68082c61a108 to your computer and use it in GitHub Desktop.
VSCode (.vscode) Portable Settings
# Run 'cat .vscode/extensions.txt | xargs -L1 code --install-extension' to install on new machine
CoenraadS.bracket-pair-colorizer
eamodio.gitlens
lextudio.restructuredtext
ms-python.python
npxms.hide-gitignored
oderwat.indent-rainbow
shardulm94.trailing-spaces
streetsidesoftware.code-spell-checker
yuichinukiyama.TabSpacer
{
"editor.formatOnSave": true,
"python.formatting.autopep8Args": [
"--global-config",
"${workspaceRoot}/setup.cfg"
],
"python.formatting.autopep8Path": "/usr/local/bin/autopep8",
"python.formatting.provider": "autopep8",
"python.linting.enabled": true,
"python.linting.lintOnSave": true,
"python.linting.mypyEnabled": true,
"python.linting.mypyPath": "/usr/local/bin/mypy",
"python.linting.pylintEnabled": true,
"python.linting.pylintPath": "/usr/local/bin/pylint",
"python.pythonPath": "${workspaceFolder}/venv/bin/python",
"window.title": "${activeEditorShort}${separator}${rootName}",
"window.zoomLevel": 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment