Last active
September 18, 2023 14:33
-
-
Save brenohq/8864f901dceefffb8d910536a83e1ae5 to your computer and use it in GitHub Desktop.
VSCode Config
This file contains hidden or 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
{ | |
"editor.fontSize": 12, | |
"editor.letterSpacing": 0.5, | |
"editor.minimap.enabled": false, | |
"editor.fontWeight": "600", | |
"editor.fontLigatures": true, | |
"editor.cursorWidth": 3, | |
"editor.renderWhitespace": "all", | |
"editor.snippetSuggestions": "top", | |
"editor.tabSize": 2, | |
"editor.smoothScrolling": true, | |
"editor.cursorSmoothCaretAnimation": "on", | |
"editor.cursorBlinking": "smooth", | |
"editor.glyphMargin": true, | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.editor.enablePreview": false, | |
"explorer.confirmDragAndDrop": false, | |
"files.trimTrailingWhitespace": true, | |
"files.trimFinalNewlines": true, | |
"javascript.preferences.quoteStyle": "single", | |
"eslint.run": "onType", | |
"terminal.integrated.macOptionIsMeta": true, | |
"editor.semanticHighlighting.enabled": false, | |
"[javascript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"terminal.integrated.cursorBlinking": true, | |
"terminal.integrated.cursorStyle": "underline", | |
"terminal.external.osxExec": "iTerm.app", | |
"terminal.integrated.fontFamily": "'Menlo', 'Inconsolata for Powerline', monospace", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"explorer.confirmDelete": false, | |
"editor.maxTokenizationLineLength": 20000000, | |
"workbench.colorTheme": "Catppuccin Mocha", | |
"keyboard.dispatch": "keyCode", | |
"editor.fontFamily": "'Fira Code', 'Droid Sans Mono', 'monospace', monospace", | |
"editor.autoIndent": "none", | |
"editor.indentSize": "tabSize", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment