Skip to content

Instantly share code, notes, and snippets.

@tonybolanyo
Last active September 29, 2019 07:16
Show Gist options
  • Save tonybolanyo/dd80f9eb384c56ad2decb976e5586d71 to your computer and use it in GitHub Desktop.
Save tonybolanyo/dd80f9eb384c56ad2decb976e5586d71 to your computer and use it in GitHub Desktop.
Develop system settings: VS Code, npm defaults
init.author.name=Tony G. Bolaño
init.author.email=tonybolanyo@gmail.com
init.author.url=https://tonygb.com
init.license=MIT
{
"explorer.confirmDelete": false,
"python.formatting.provider": "autopep8",
"python.linting.pylintArgs": [
"--load-plugins",
"pylint_django"
],
"files.eol": "\n",
"gitlens.defaultDateFormat": "DD/MM/YYYY HH:mm:ss",
"git.autofetch": true,
"files.associations": {
"*.geojson": "json"
},
"editor.rulers": [
79,
120
],
"files.autoSave": "onFocusChange",
"window.zoomLevel": 0,
"gitlens.codeLens.enabled": false,
"editor.renderControlCharacters": false,
"editor.renderWhitespace": "none",
"breadcrumbs.enabled": false,
"editor.minimap.enabled": false,
"git.enableSmartCommit": true,
"editor.fontFamily": "Monaco, Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
"[html]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.tabSize": 2
},
"[javascript]": {
"editor.tabSize": 2
},
"[python]": {
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.formatOnSave": true
},
"[vue]": {
"editor.tabSize": 2
},
"git.confirmSync": false,
"vsicons.projectDetection.autoReload": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment