Skip to content

Instantly share code, notes, and snippets.

@wesleyadriann
Last active July 18, 2023 19:37
Show Gist options
  • Save wesleyadriann/debed857967aae7a29699b0fd41cfad9 to your computer and use it in GitHub Desktop.
Save wesleyadriann/debed857967aae7a29699b0fd41cfad9 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"editor.fontFamily": "'Cascadia Code', 'MesloLGS NF','Fira Code', 'Courier New', monospace",
"terminal.integrated.fontSize": 10,
// "editor.fontLigatures": true,
"editor.fontSize": 12,
"colorize.languages": ["javascript", "typescript", "typescriptreact"],
"files.exclude": {
"**/.git": false,
"**/.svn": false,
"**/.hg": false,
"**/CVS": false,
"**/.DS_Store": false
},
"diffEditor.ignoreTrimWhitespace": false,
"terminal.integrated.fontFamily": "'MesloLGS NF', 'Meslo LG S for Powerline', 'Courier New', monospace",
"explorer.compactFolders": false,
"workbench.colorCustomizations": {
// "diffEditor.insertedTextBackground": "#181a1b",
// "diffEditor.insertedTextBorder": "#181a1b",
// "selection.background": "#000000",
// "terminal.ansiGreen": "#CCCCCC",
// "terminal.ansiBlue": "#0D6678"
// "sideBar.background": "#24292E",
// "sideBar.foreground": "#878F9E",
// "sideBarTitle.foreground": "#709DEB",
// "sideBarSectionHeader.background": "#24292E",
// "list.inactiveSelectionBackground": "#191E2A",
// "statusBar.background": "#24292E",
// "statusBar.foreground": "#878F9E"
// "editor.background": "#ffffff"
},
"files.autoSave": "off",
"files.associations": {
"*.template": "html",
"Docker*": "dockerfile",
"docker-compose.*": "dockercompose",
"*.rmd": "markdown",
".env*": "properties",
"*.ftl": "html"
},
"terminal.integrated.cursorBlinking": true,
"editor.suggestSelection": "first",
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairsHorizontal": true,
"security.workspace.trust.untrustedFiles": "open",
"workbench.tree.indent": 15,
"cSpell.language": "en,pt_BR",
"diffEditor.codeLens": true,
"git.mergeEditor": false,
"totalTypeScript.hideAllTips": true,
"totalTypeScript.hideBasicTips": true,
"typescript.inlayHints.parameterNames.enabled": "literals",
"typescript.inlayHints.propertyDeclarationTypes.enabled": true,
"typescript.inlayHints.parameterTypes.enabled": true,
"typescript.inlayHints.functionLikeReturnTypes.enabled": true,
"editor.inlayHints.enabled": "on",
"cSpell.userWords": [],
"workbench.colorTheme": "Visual Studio Dark",
"workbench.startupEditor": "none",
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"window.zoomLevel": 1,
"[typescript][typescriptreact][javascriptreact][javascript][jsonc]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [80],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"jestrunner.runOptions": ["--colors", "--coverage"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment