Advertisement
mayannait

Vs Code Settings

Jul 25th, 2021
923
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.14 KB | None | 0 0
  1. {
  2.   // Tema
  3.   "workbench.colorTheme": "Copilot Theme",
  4.   // Ícones
  5.   "workbench.iconTheme": "material-icon-theme",
  6.   // Associações
  7.   "files.associations": {
  8.     "**/*.html": "html",
  9.     "**/templates/**/*.html": "django-html",
  10.     "**/templates/**/*": "django-txt",
  11.     "**/requirements{/**,*}.{txt,in}": "pip-requirements"
  12.   },
  13.   // Emmet
  14.   "emmet.includeLanguages": {
  15.     "django-html": "html",
  16.     "html": "html"
  17.   },
  18.   // Tabnine
  19.   "tabnine.experimentalAutoImports": true,
  20.   // Jupyter
  21.   "workbench.editorAssociations": {
  22.     "*.ipynb": "jupyter-notebook"
  23.   },
  24.   "notebook.cellToolbarLocation": {
  25.     "default": "right",
  26.     "jupyter-notebook": "left"
  27.   },
  28.   // Interpletador Python
  29.   // "python.defaultInterpreterPath": "/venv/bin/python",
  30.   // Zoom  
  31.   "window.zoomLevel": -1,
  32.   // Fonte
  33.   "editor.fontSize": 17,
  34.   "files.autoSave": "afterDelay",
  35.   "editor.fontWeight": "500",
  36.   // Cursor
  37.   "editor.cursorStyle": "block",
  38.   // Formatar quando colar
  39.   "editor.formatOnPaste": true,
  40.   // Formatar quando salvar
  41.   "editor.formatOnSave": true,
  42.   // Quebra de linha no diff e no editor
  43.   "diffEditor.wordWrap": "on",
  44.   "editor.wordWrap": "on",
  45.   // Terminal em  ZSH
  46.   "terminal.integrated.automationShell.linux": "/bin/zsh",
  47.   //Formatação do código django-html
  48.   // "prettier.disableLanguages": [
  49.   //   "django-html",
  50.   //   "html",
  51.   //   "vue-html"
  52.   // ],
  53.   // Beautify
  54.   "beautify.language": {
  55.     "html": [
  56.       "django-html",
  57.       "html",
  58.       "vue-html"
  59.     ]
  60.   },
  61.   // Salvar e formatar
  62.   "[django-html]": {
  63.     "editor.formatOnSave": true,
  64.     "editor.defaultFormatter": "HookyQR.beautify"
  65.   },
  66.   // Espaço da tab
  67.   "editor.tabSize": 2,
  68.   // Identação
  69.   "editor.detectIndentation": true,
  70.   // Desabilitado o preview
  71.   "workbench.editor.enablePreview": false,
  72.   // Highlight Matching Tag
  73.   "highlight-matching-tag.styles": {
  74.     "opening": {
  75.       "name": {
  76.         "underline": "yellow"
  77.       }
  78.     }
  79.   },
  80.   // Emmet
  81.   "emmet.variables": {
  82.     "lang": "pt-br",
  83.     "charset": "UTF-8"
  84.   },
  85.   // Comentário no fechamentos das tags
  86.   "htmlEndTagLabels.labelColor": "#666666"
  87. } // Fim
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement