Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 0 0
  1. {
  2. // Define o tema do VSCode
  3. // "workbench.colorTheme": "Dracula",
  4.  
  5. // Remove a barra de titulo
  6. "window.titleBarStyle": "custom",
  7.  
  8. // Configura tamanho e família da fonte
  9. // "editor.fontSize": 18,
  10. // "editor.lineHeight": 24,
  11. "editor.fontFamily": "Fira Code",
  12. "editor.fontLigatures": true,
  13.  
  14. // Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes
  15. "editor.rulers": [80, 120],
  16. "editor.formatOnSave": false,
  17.  
  18.  
  19. //uncrustify
  20. "uncrustify.langOverrides": {
  21. "apex": "JAVA",
  22. "apex-anon": "JAVA"
  23. },
  24.  
  25. //Todo-Tree
  26. "todo-tree.defaultHighlight": {
  27. // "icon": "alert",
  28. "type": "text",
  29. "foreground": "yellow",
  30. "background": "black",
  31. "opacity": 50,
  32. "iconColour": "blue"
  33. },
  34. "todo-tree.customHighlight": {
  35. "TODO": {
  36. // "icon": "check",
  37. "type": "line"
  38. },
  39. "FIXME": {
  40. "foreground": "black",
  41. "iconColour": "yellow"
  42. }
  43. },
  44.  
  45. "eslint.autoFixOnSave": true,
  46. "eslint.validate": [
  47. {
  48. "language": "javascript",
  49. "autoFix": true
  50. },
  51. {
  52. "language": "javascriptreact",
  53. "autoFix": true
  54. },
  55. {
  56. "language": "typescript",
  57. "autoFix": true
  58. },
  59. {
  60. "language": "typescriptreact",
  61. "autoFix": true
  62. }
  63. ],
  64.  
  65. // Aplica um sinal visual na esquerda da linha selecionada
  66. "editor.renderLineHighlight": "gutter",
  67.  
  68. // Aumenta a fonte do terminal
  69. "terminal.integrated.fontSize": 14,
  70.  
  71. // Define o tema dos ícones na sidebar
  72. "workbench.iconTheme": "material-icon-theme",
  73. "workbench.startupEditor": "newUntitledFile",
  74. "editor.tabSize": 2,
  75. "window.zoomLevel": 0,
  76. "extensions.ignoreRecommendations": false,
  77. "emmet.syntaxProfiles": {
  78. "javascript": "jsx",
  79. "nunjucks": "html"
  80. },
  81. "emmet.includeLanguages": {
  82. "javascript": "javascriptreact",
  83. "nunjucks": "html"
  84. },
  85. "javascript.updateImportsOnFileMove.enabled": "never",
  86. "gitlens.codeLens.recentChange.enabled": false,
  87. "gitlens.codeLens.authors.enabled": false,
  88. "gitlens.codeLens.enabled": false,
  89. "breadcrumbs.enabled": true,
  90. "git.enableSmartCommit": true,
  91. "editor.parameterHints.enabled": false,
  92. "typescript.updateImportsOnFileMove.enabled": "never",
  93. "terminal.integrated.shell.linux": "/bin/zsh",
  94. "explorer.confirmDragAndDrop": false,
  95. "liveshare.featureSet": "insiders",
  96. "explorer.confirmDelete": false,
  97.  
  98. "typescript.tsserver.log": "verbose",
  99. "window.menuBarVisibility": "default",
  100. "workbench.activityBar.visible": true,
  101. "editor.minimap.enabled": true,
  102. "force.allowAnonymousUsageTracking": true,
  103. "todo-tree.highlights.customHighlight": {
  104. "TODO": {
  105. "type": "line"
  106. },
  107. "FIXME": {
  108. "foreground": "black",
  109. "iconColour": "yellow"
  110. }
  111. },
  112. "todo-tree.highlights.defaultHighlight": {
  113. "type": "text",
  114. "foreground": "yellow",
  115. "background": "black",
  116. "opacity": 50,
  117. "iconColour": "blue"
  118. }
  119. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement