Advertisement
mayannait

Vs Code Trainning

Jul 31st, 2021
994
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 5.08 KB | None | 0 0
  1. {
  2.   // Configurações do pylint
  3.   // "python.pythonPath": "venv/bin/python",
  4.   // "python.linting.pylintArgs": [
  5.   //   "--load-plugins=pylint_django"
  6.   // ],
  7.  
  8.   // Tema
  9.   "workbench.colorTheme": "Copilot Theme",
  10.   "workbench.productIconTheme": "icons-carbon",
  11.   "workbench.iconTheme": "material-icon-theme",
  12.   // Associações
  13.   "files.associations": {
  14.     "**/*.html": "html",
  15.     "**/templates/**/*.html": "django-html",
  16.     "**/templates/**/*": "django-txt",
  17.     "**/requirements{/**,*}.{txt,in}": "pip-requirements"
  18.   },
  19.  
  20.   // Tabnine
  21.   "tabnine.experimentalAutoImports": true,
  22.   // Jupyter
  23.   "workbench.editorAssociations": {
  24.     "*.ipynb": "jupyter-notebook"
  25.   },
  26.   "notebook.cellToolbarLocation": {
  27.     "default": "right",
  28.     "jupyter-notebook": "left"
  29.   },
  30.   // Fonte
  31.   "editor.fontSize": 17,
  32.   "files.autoSave": "afterDelay",
  33.   "editor.fontWeight": "500",
  34.   // Cursor
  35.   "editor.cursorStyle": "block",
  36.   // Formatar quando colar
  37.   "editor.formatOnPaste": true,
  38.   // Formatar quando salvar
  39.   "editor.formatOnSave": true,
  40.   // Quebra de linha no diff e no editor
  41.   "diffEditor.wordWrap": "on",
  42.   "editor.wordWrap": "on",
  43.   // Terminal em  ZSH
  44.   "terminal.integrated.automationShell.linux": "/bin/zsh",
  45.   //Formatação do código django-html
  46.   // "prettier.disableLanguages": [
  47.   //   "django-html",
  48.   //   "html",
  49.   //   "vue-html"
  50.   // ],
  51.   // Beautify
  52.   "beautify.language": {
  53.     "html": [
  54.       "django-html",
  55.       "html",
  56.       "vue-html"
  57.     ]
  58.   },
  59.   // Salvar e formatar
  60.   "[django-html]": {
  61.     "editor.formatOnSave": true,
  62.     "editor.defaultFormatter": "HookyQR.beautify"
  63.   },
  64.   // Espaço da tab
  65.   "editor.tabSize": 2,
  66.   // Identação
  67.   "editor.detectIndentation": true,
  68.   // Desabilitado o preview
  69.   "workbench.editor.enablePreview": false,
  70.   // Highlight Matching Tag
  71.   "highlight-matching-tag.styles": {
  72.     "opening": {
  73.       "name": {
  74.         "underline": "yellow"
  75.       }
  76.     }
  77.   },
  78.   // Emmet
  79.   "emmet.variables": {
  80.     "lang": "pt-br",
  81.     "charset": "UTF-8"
  82.   },
  83.   // Emmet associações
  84.   "emmet.includeLanguages": {
  85.     "django-html": "html",
  86.     "html": "html"
  87.   },
  88.   "emmet.triggerExpansionOnTab": true,
  89.   "emmet.showSuggestionsAsSnippets": true,
  90.   // Comentário no fechamentos das tags
  91.   "htmlEndTagLabels.labelColor": "#ffe20d",
  92.   // Spell check idiomas
  93.   "cSpell.language": "en,pt,pt_BR",
  94.   // Better Comments
  95.   "better-comments.tags": [
  96.  
  97.     {
  98.       "tag": "!",
  99.       "color": "#FF2D00",
  100.       "strikethrough": false,
  101.       "underline": false,
  102.       "backgroundColor": "transparent",
  103.       "bold": false,
  104.       "italic": false
  105.     },
  106.     {
  107.       "tag": "?",
  108.       "color": "#3498DB",
  109.       "strikethrough": false,
  110.       "underline": false,
  111.       "backgroundColor": "transparent",
  112.       "bold": false,
  113.       "italic": false
  114.     },
  115.     {
  116.       "tag": "//",
  117.       "color": "#474747",
  118.       "strikethrough": true,
  119.       "underline": false,
  120.       "backgroundColor": "transparent",
  121.       "bold": false,
  122.       "italic": false
  123.     },
  124.     {
  125.       "tag": "todo",
  126.       "color": "#FF8C00",
  127.       "strikethrough": false,
  128.       "underline": false,
  129.       "backgroundColor": "transparent",
  130.       "bold": false,
  131.       "italic": false
  132.     },
  133.     {
  134.       "tag": "*",
  135.       "color": "#98C379",
  136.       "strikethrough": false,
  137.       "underline": false,
  138.       "backgroundColor": "transparent",
  139.       "bold": false,
  140.       "italic": false
  141.     }
  142.   ],
  143.   // Colorful Comments
  144.   "colorful-comments.highlightPlainText": true,
  145.   "colorful-comments.tags": [
  146.  
  147.     {
  148.       "tag": "!",
  149.       "color": "#FF2D00",
  150.       "strikethrough": false,
  151.       "backgroundColor": "transparent"
  152.     },
  153.     {
  154.       "tag": "?",
  155.       "color": "#0076FF",
  156.       "strikethrough": false,
  157.       "backgroundColor": "transparent"
  158.     },
  159.     {
  160.       "tag": "//",
  161.       "color": "#474747",
  162.       "strikethrough": true,
  163.       "backgroundColor": "transparent"
  164.     },
  165.     {
  166.       "tag": "^",
  167.       "color": "#EAF622",
  168.       "strikethrough": false,
  169.       "backgroundColor": "transparent"
  170.     },
  171.     {
  172.       "tag": "*",
  173.       "color": "#28FF00",
  174.       "strikethrough": false,
  175.       "backgroundColor": "transparent"
  176.     },
  177.     {
  178.       "tag": "&",
  179.       "color": "#FF06A0",
  180.       "strikethrough": false,
  181.       "backgroundColor": "transparent"
  182.     },
  183.     {
  184.       "tag": "~",
  185.       "color": "#BE00FF",
  186.       "strikethrough": false,
  187.       "backgroundColor": "transparent"
  188.     },
  189.     {
  190.       "tag": "todo",
  191.       "color": "#FF8C00",
  192.       "strikethrough": false,
  193.       "backgroundColor": "transparent"
  194.     }
  195.   ],
  196.   "editor.autoClosingBrackets": "always",
  197.   "editor.autoClosingQuotes": "always",
  198.   "editor.cursorBlinking": "smooth",
  199.   "editor.suggestSelection": "first",
  200.   "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
  201.   "cSpell.userWords": [
  202.     "alura",
  203.     "Mayanna"
  204.   ],
  205.   "editor.comments.ignoreEmptyLines": false,
  206.   "window.zoomLevel": -1,
  207.   "sync.gist": "bb09a03361d0da3fddd74adaa7bcef14",
  208.   // Ignorar linhas brancas
  209.   // "editor.comments.includeEmptyLines": true,
  210. } // Fim
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement