Advertisement
caiohenriquesilva

VSCODE CONFIG ATUAL

Sep 16th, 2019
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.88 KB | None | 0 0
  1. {
  2.     "files.autoSave": "onFocusChange",
  3.     "editor.fontSize": 12,
  4.     "editor.fontWeight": "100",
  5.     "editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
  6.     "editor.fontLigatures": true,
  7.     "editor.formatOnSave": true,
  8.     "prettier.trailingComma": "all",
  9.     "prettier.semi": false,
  10.     "files.exclude": {
  11.         "**/.git": true,
  12.         "**/.svn": true,
  13.         "**/.hg": true,
  14.         "**/CVS": true,
  15.         "**/.DS_Store": true,
  16.         "**/*.pyc": true,
  17.         "**/__pycache__": true
  18.     },
  19.     "workbench.colorTheme": "Dracula",
  20.     "workbench.iconTheme": "material-icon-theme",
  21.     "python.linting.pylintPath": "/usr/local/bin/pylint",
  22.     "window.zoomLevel": 0,
  23.     "explorer.confirmDragAndDrop": false,
  24.     "auto-close-tag.activationOnLanguage": [
  25.         "*"
  26.     ],
  27.     "files.autoSaveDelay": 5000,
  28.     "editor.cursorStyle": "line-thin"
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement