Skip to content

Instantly share code, notes, and snippets.

@eduardoreche
Last active September 20, 2023 14:31
Show Gist options
  • Save eduardoreche/c02ce44628eecb614d644761a13e0fa8 to your computer and use it in GitHub Desktop.
Save eduardoreche/c02ce44628eecb614d644761a13e0fa8 to your computer and use it in GitHub Desktop.
My VSCode User Settings late-2023
{
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
],
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.tabSize": 2,
"editor.detectIndentation": true,
"editor.rulers": [
80,
120
],
"editor.wordWrapColumn": 80,
"editor.bracketPairColorization.enabled": true,
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"editor.cursorBlinking": "expand",
"editor.renderWhitespace": "all",
"editor.renderControlCharacters": false,
"editor.fontFamily": "'cascadia code'",
"editor.fontLigatures": "'cgalt', 'ss01'",
"editor.parameterHints.enabled": false,
"editor.semanticHighlighting.enabled": false,
"editor.renderLineHighlightOnlyWhenFocus": true,
"editor.inlineSuggest.enabled": true,
"terminal.integrated.minimumContrastRatio": 4.5,
"terminal.integrated.fontFamily": "Cascadia Code PL",
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.defaultProfile.osx": "zsh",
"diffEditor.ignoreTrimWhitespace": false,
"files.eol": "\n",
"files.insertFinalNewline": true,
"workbench.colorTheme": "Moonlight II Italic",
"workbench.iconTheme": "material-icon-theme",
"workbench.editor.labelFormat": "short",
"workbench.editor.enablePreview": false,
"extensions.ignoreRecommendations": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"git.autofetch": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment