Skip to content

Instantly share code, notes, and snippets.

@marcos-bah
Created February 7, 2022 12:02
Show Gist options
  • Save marcos-bah/81a0370956e451247f17a2c4ab53d8c8 to your computer and use it in GitHub Desktop.
Save marcos-bah/81a0370956e451247f17a2c4ab53d8c8 to your computer and use it in GitHub Desktop.
Configuração vs-code
{
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.fontLigatures": true,
"workbench.startupEditor": "newUntitledFile",
"editor.suggestSelection": "first",
"editor.formatOnSave": true,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"python.showStartPage": false,
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [
120
],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false,
"editor.autoIndent": "full"
},
"python.languageServer": "Pylance",
"explorer.confirmDelete": false,
"workbench.iconTheme": "vscode-icons",
"explorer.confirmDragAndDrop": false,
"C_Cpp.updateChannel": "Insiders",
"dart.debugExternalLibraries": false,
"dart.debugSdkLibraries": false,
"security.workspace.trust.untrustedFiles": "newWindow",
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": true,
"yaml": true,
"plaintext": true,
"markdown": true,
"dart": true,
"vue": true,
"javascript": true,
"typescript": true
},
"github.copilot.autocomplete.enable": true,
"sync.gist": "4366539df62e460f9d9bcd40b4193472",
"files.associations": {
"*.html": "html",
"*.txt": "plaintext"
},
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"liveServer.settings.donotVerifyTags": true,
"[vue]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.autoIndent": "full",
"editor.defaultFormatter": "octref.vetur"
},
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment