Skip to content

Instantly share code, notes, and snippets.

@willmendesneto
Last active October 19, 2022 02:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save willmendesneto/463d93a3a381c7b3f29bf25d6c22dc62 to your computer and use it in GitHub Desktop.
Save willmendesneto/463d93a3a381c7b3f29bf25d6c22dc62 to your computer and use it in GitHub Desktop.
VSCode: Settings configuration
{
"workbench.startupEditor": "newUntitledFile",
"workbench.activityBar.visible": false,
"editor.multiCursorModifier": "ctrlCmd",
"search.exclude": {
"**/.git": true,
"**/node_modules": true,
"**/bower_components": true,
"**/.tmp": true,
"**/.DS_Store": true
},
"workbench.iconTheme": "material-icon-theme",
"editor.autoIndent": "full",
"material-icon-theme.showUpdateMessage": false,
"explorer.confirmDragAndDrop": false,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"emphasis",
"markup.italic",
"comment",
"comment.block",
"comment.block.documentation",
"comment.line",
"punctuation.definition.comment",
"string.quoted.docstring",
"entity.other.inherited-class",
"entity.name.type.module",
"variable.parameter",
"storage.modifier",
"storage.type.class.js",
"variable.language.this",
"variable.language.this.js",
"support.module",
"support.node",
"entity.other.attribute-name",
"meta.cast",
"meta.preprocessor",
"meta.return-type",
"meta.selector",
"meta.type.annotation",
"meta.type",
"constant",
"constant.character",
"constant.character.escape",
"constant.numeric",
"constant.numeric.integer",
"constant.numeric.float",
"constant.numeric.hex",
"constant.numeric.octal",
"constant.other",
"constant.regexp",
"constant.rgb-value",
"markup.bold",
"markup.changed",
"markup.deleted",
"markup.heading",
"markup.inline.raw",
"markup.inserted",
"markup.italic",
"markup.list",
"markup.list.numbered",
"markup.list.unnumbered",
"markup.other",
"markup.quote",
"markup.raw",
"markup.underline",
"markup.underline.link",
"punctuation.definition.string.begin",
"punctuation.definition.string.end",
"punctuation.separator",
"punctuation.separator.continuation",
"punctuation.terminator",
"storage.modifier",
"string.interpolated",
"string.regexp",
"support.class",
"entity.other.inherited-class",
"storage.type",
"variable.parameter",
"comment",
"comment.block",
"comment.block.documentation",
"comment.line",
"emphasis",
"invalid",
"invalid.deprecated",
"invalid.illegal",
"keyword.control",
"keyword.operator.new",
"keyword.operator.assignment",
"keyword.operator.arithmetic",
"keyword.other"
],
"settings": {
"fontStyle": "italic"
}
}
]
},
"editor.fontLigatures": true,
"emmet.triggerExpansionOnTab": true,
"files.watcherExclude": {
"**/.git/**": true,
"**/node_modules/**": true,
"**/tmp/**": true,
"**/bower_components/**": true,
"**/dist/**": true,
"**/lib/**": true
},
"auto-rename-tag.activationOnLanguage": ["html", "xml", "javascript"],
"workbench.colorCustomizations": {
"editorIndentGuide.activeBackground": "#33ff00",
"terminalCursor.foreground": "#CA2FC8",
"editorCursor.foreground": "#E5ECF3",
"list.inactiveSelectionBackground": "#525252",
"list.activeSelectionBackground": "#525252"
},
"editor.cursorStyle": "line",
"editor.formatOnSave": true,
"javascript.validate.enable": false,
"eslint.workingDirectories": [{ "mode": "auto" }],
"prettier.trailingComma": "all",
"prettier.printWidth": 100,
"breadcrumbs.enabled": true,
"editor.suggestSelection": "first",
"editor.tabSize": 2,
"editor.detectIndentation": false,
"editor.insertSpaces": false,
"explorer.confirmDelete": false,
"editor.tabCompletion": "on",
"editor.snippetSuggestions": "top",
"editor.fontSize": 14,
"terminal.integrated.fontSize": 14,
"debug.console.fontSize": 14,
"explorer.openEditors.visible": 5,
"files.autoSave": "onFocusChange",
"editor.cursorWidth": 4,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"prettier.singleQuote": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"javascript.preferences.quoteStyle": "single",
"typescript.preferences.quoteStyle": "single",
"debug.javascript.codelens.npmScripts": "never",
"workbench.colorTheme": "GitHub Dark",
"search.followSymlinks": false,
"editor.minimap.enabled": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"eslint.probe": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"html",
"vue",
"markdown",
"json"
],
"typescript.updateImportsOnFileMove.enabled": "always",
"window.zoomLevel": 2,
"security.workspace.trust.untrustedFiles": "open"
// SCREEN RECORD SETTINGS
// "editor.fontSize": 18,
// "terminal.integrated.fontSize": 18,
// "editor.quickSuggestions": false,
// "editor.suggestOnTriggerCharacters": false,
// "editor.wordBasedSuggestions": false,
// "editor.quickSuggestionsDelay": 1000000,
// "editor.parameterHints.enabled": false,
// "gitlens.mode.active": "zen",
// "editor.lightbulb.enabled": false,
// "breadcrumbs.enabled": false,
// "workbench.statusBar.visible": false,
// "gitlens.codeLens.enabled": false,
// "editor.hover.enabled": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment