Skip to content

Instantly share code, notes, and snippets.

@SouzaRodrigo61
Last active July 6, 2021 18:19
Show Gist options
  • Save SouzaRodrigo61/297dbbf44b529b322e31f53664943886 to your computer and use it in GitHub Desktop.
Save SouzaRodrigo61/297dbbf44b529b322e31f53664943886 to your computer and use it in GitHub Desktop.
Vscode Settings - By: Rodrigo Santos
{
"editor.fontSize": 16,
"editor.lineHeight": 24,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
// Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes
"editor.rulers": [80, 120],
"editor.formatOnSave": false,
// Aplica um sinal visual na esquerda da linha selecionada
"editor.renderLineHighlight": "gutter",
// Aumenta a fonte do terminal
"terminal.integrated.fontSize": 14,
// Define o tema dos ícones na sidebar
"workbench.iconTheme": "material-icon-theme",
"editor.tabSize": 4,
"window.zoomLevel": 0,
"extensions.ignoreRecommendations": false,
"emmet.syntaxProfiles": {
"javascript": "jsx",
"nunjucks": "html"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"nunjucks": "html"
},
"javascript.updateImportsOnFileMove.enabled": "never",
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.enabled": false,
"breadcrumbs.enabled": true,
"git.enableSmartCommit": true,
"editor.parameterHints.enabled": false,
"typescript.updateImportsOnFileMove.enabled": "never",
"terminal.integrated.shell.osx": "/bin/zsh",
"terminal.integrated.shell.linux": "/bin/zsh",
"explorer.confirmDragAndDrop": false,
"liveshare.featureSet": "insiders",
"explorer.confirmDelete": false,
"typescript.tsserver.log": "verbose",
"jshint.options": {
"esversion": 6
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.autoSave": "afterDelay",
"git.autofetch": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"terminal.integrated.rendererType": "dom",
"team.showWelcomeMessage": false,
"workbench.colorCustomizations": {},
"materialTheme.accent": "Blue",
"material-icon-theme.folders.color": "#90a4ae",
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.fixAll.eslint": false
},
"sync.gist": "03de9aa70d1657483305c3fa1e5110be",
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"[Xcode Partial (Dark)]": {
"textMateRules": [
{
"scope": "source",
"settings": {
"foreground": "#D4D4D4"
}
},
{
"scope": "comment",
"settings": {
"foreground": "#6C7986",
"fontStyle": "italic"
}
}
]
},
"java.import.maven.enabled": true,
"java.saveActions.organizeImports": true,
"[java]": {
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.minimap.showSlider": "always",
"editor.defaultFormatter": "redhat.vscode-quarkus"
},
"[dart]": {
"editor.tabSize": 4,
"editor.insertSpaces": false,
"editor.detectIndentation": true,
// Automatically format code on save and during typing of certain characters
// (like `;` and `}`).
"editor.formatOnSave": true,
"editor.formatOnType": true,
// Draw a guide line at 80 characters, where Dart's formatting will wrap code.
"editor.rulers": [150],
// Disables built-in highlighting of words that match your selection. Without
// this, all instances of the selected text will be highlighted, interfering
// with Dart's ability to highlight only exact references to the selected variable.
"editor.selectionHighlight": false,
// By default, VS Code prevents code completion from popping open when in
// "snippet mode" (editing placeholders in inserted code). Setting this option
// to `false` stops that and allows completion to open as normal, as if you
// weren't in a snippet placeholder.
"editor.suggest.snippetsPreventQuickSuggestions": false,
// By default, VS Code will pre-select the most recently used item from code
// completion. This is usually not the most relevant item.
//
// "first" will always select top item
// "recentlyUsedByPrefix" will filter the recently used items based on the
// text immediately preceeding where completion was invoked.
"editor.suggestSelection": "first",
// Allows pressing <TAB> to complete snippets such as `for` even when the
// completion list is not visible.
"editor.tabCompletion": "onlySnippets",
// By default, VS Code will populate code completion with words found in the
// current file when a language service does not provide its own completions.
// This results in code completion suggesting words when editing comments and
// strings. This setting will prevent that.
"editor.wordBasedSuggestions": false,
// Force all files to have a trailing newline for consistency and reduced diffs
// when adding new lines at the bottom of the file.
"files.insertFinalNewline": true,
},
"eslint.codeAction.showDocumentation": {
"enable": false
},
"[html]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"workbench.colorTheme": "One Dark Pro",
"liveshare.sharedTerminalWidth": 300,
"liveshare.keepAliveInterval": -1,
"java.format.settings.profile": "/home/rodrigo-connectis/Área de Trabalho/eclipse-vscode.xml",
"java.codeGeneration.generateComments": true,
"java.codeGeneration.hashCodeEquals.useInstanceof": true,
"java.codeGeneration.hashCodeEquals.useJava7Objects": true,
"java.codeGeneration.toString.codeStyle": "STRING_BUILDER_CHAINED",
"java.codeGeneration.toString.skipNullValues": true,
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -javaagent:\"/home/rodrigo-connectis/.vscode/extensions/gabrielbb.vscode-lombok-1.0.1/server/lombok.jar\"",
"quarkus.tools.debug.terminateProcessOnExit": "Always terminate",
"java.semanticHighlighting.enabled": true,
"java.checkstyle.modules": [
],
"xml.java.home": "",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment