Created
July 21, 2022 10:08
-
-
Save AlbertoBasalo/e4f6026b301561f0094658e4ae5cadd3 to your computer and use it in GitHub Desktop.
Settings example for 0.0 article
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"[html]": { | |
"editor.defaultFormatter": "vscode.html-language-features" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"editor.autoIndent": "full", | |
"editor.bracketPairColorization.enabled": true, | |
"editor.codeActionsOnSave": [ | |
"source.addMissingImports", | |
"source.fixAll", | |
"source.organizeImports" | |
], | |
"editor.cursorBlinking": "expand", | |
"editor.cursorSmoothCaretAnimation": true, | |
"editor.detectIndentation": false, | |
"editor.fontLigatures": false, | |
"editor.fontSize": 18, | |
"editor.formatOnPaste": true, | |
"editor.formatOnSave": true, | |
"editor.formatOnType": true, | |
"editor.guides.bracketPairs": true, | |
"editor.inlineSuggest.enabled": true, | |
"editor.minimap.enabled": false, | |
"editor.semanticHighlighting.enabled": false, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"name": "Control flow", | |
"scope": "keyword.control, keyword.control.flow", | |
"settings": { | |
"fontStyle": "italic bold" | |
} | |
}, | |
{ | |
"name": "Definitions", | |
"scope": [ | |
"entity.name.type.class", | |
"meta.definition.method", | |
"meta.definition.property", | |
"meta.definition.function", | |
"entity.name.section.markdown" | |
], | |
"settings": { | |
"fontStyle": "bold" | |
} | |
}, | |
{ | |
"name": "Function/Method Calls HTML attributes", | |
"scope": [ | |
"meta.function-call", | |
"keyword.operator.new.ts", | |
"entity.other.attribute-name.html" | |
], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"name": "Other", | |
"scope": [ | |
"keyword.control.import", | |
"keyword.control.export", | |
"keyword.control.from", | |
"keyword.operator", | |
"meta.type.annotation", | |
"storage" | |
], | |
"settings": { | |
"fontStyle": "" | |
} | |
}, | |
] | |
}, | |
"editor.tabSize": 2, | |
"editor.wordWrap": "wordWrapColumn", | |
"editor.wordWrapColumn": 100, | |
"explorer.compactFolders": false, | |
"files.exclude": { | |
"**/.DS_Store": true, | |
"**/.git": true, | |
"node_modules/": true | |
}, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/env/**": true, | |
"dist/": true, | |
"env-*": true | |
}, | |
"html.format.indentInnerHtml": true, | |
"html.format.wrapAttributes": "force-aligned", | |
"html.format.wrapLineLength": 100, | |
"screencastMode.fontSize": 28, | |
"screencastMode.keyboardOverlayTimeout": 500, | |
"screencastMode.keyboardShortcutsFormat": "command", | |
"screencastMode.mouseIndicatorColor": "#3fb950", | |
"screencastMode.mouseIndicatorSize": 30, | |
"screencastMode.onlyKeyboardShortcuts": true, | |
"search.exclude": { | |
"**/env": true, | |
"node_modules/": true | |
}, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"workbench.colorCustomizations": { | |
"editor.lineHighlightBorder": "#000000", | |
"editorBracketHighlight.foreground1": "#a371f7", | |
"editorBracketHighlight.foreground2": "#58a6ff", | |
"editorBracketHighlight.foreground3": "#3fb950", | |
"editorBracketHighlight.foreground4": "#d29922", | |
"editorBracketHighlight.foreground5": "#db6d28", | |
"editorBracketHighlight.foreground6": "#f85149", | |
"editorError.foreground": "#B35642", | |
"editorWarning.foreground": "#B38F42", | |
"tab.activeBorder": "#3fb950", | |
"tab.activeBorderTop": "#3fb950" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment