Skip to content

Instantly share code, notes, and snippets.

@thinkricardo
Last active November 13, 2023 17:13
Show Gist options
  • Save thinkricardo/2fabdc47368b7ff3fc996c608926f1f7 to your computer and use it in GitHub Desktop.
Save thinkricardo/2fabdc47368b7ff3fc996c608926f1f7 to your computer and use it in GitHub Desktop.
My Visual Studio Code Settings
{
"window.commandCenter": true,
"window.newWindowDimensions": "inherit",
"security.workspace.trust.enabled": false,
"workbench.startupEditor": "none",
"workbench.colorTheme": "Ayu Mirage",
"workbench.iconTheme": "ayu",
"workbench.tree.indent": 20,
"workbench.tree.renderIndentGuides": "none",
"workbench.editor.enablePreview": true,
"workbench.list.smoothScrolling": true,
"workbench.colorCustomizations": {
"diffEditor.removedTextBackground": "#c2180830",
"diffEditor.removedTextBorder": "#c2180840",
"diffEditor.insertedTextBackground": "#2ecc4030",
"diffEditor.insertedTextBorder": "#2ecc4040",
"editorRuler.foreground": "#ffffff10"
},
"explorer.compactFolders": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"explorer.decorations.badges": false,
"breadcrumbs.enabled": false,
"editor.rulers": [119],
"editor.smoothScrolling": true,
"editor.stickyScroll.enabled": true,
"editor.fontFamily": "'Monaspace Argon'",
"editor.fontSize": 18,
"editor.fontLigatures": "'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08', 'calt', 'dlig'",
"editor.letterSpacing": -0.8,
"editor.lineHeight": 26,
"editor.codeLensFontFamily": "'Monaspace Argon'",
"editor.codeLensFontSize": 15,
"editor.inlayHints.fontFamily": "'Monaspace Argon'",
"editor.inlayHints.fontSize": 15,
"editor.inlayHints.padding": true,
"editor.suggestFontSize": 15,
"terminal.integrated.fontFamily": "'MesloLGS NF'",
"terminal.integrated.fontSize": 16,
"terminal.integrated.letterSpacing": -0.8,
"scm.inputFontFamily": "'Monaspace Argon'",
"scm.inputFontSize": 15,
"debug.console.fontFamily": "'Monaspace Argon'",
"debug.console.fontSize": 16,
"debug.console.lineHeight": 26,
"debug.onTaskErrors": "showErrors",
"debug.toolBarLocation": "commandCenter",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.renderControlCharacters": true,
"editor.renderWhitespace": "selection",
"editor.renderLineHighlight": "all",
"editor.lineNumbers": "on",
"editor.minimap.enabled": false,
"editor.minimap.renderCharacters": false,
"editor.cursorWidth": 2,
"editor.cursorStyle": "line",
"editor.cursorBlinking": "phase",
"editor.cursorSmoothCaretAnimation": "on",
"editor.bracketPairColorization.enabled": true,
"editor.linkedEditing": true,
"git.confirmSync": false,
"git.mergeEditor": true,
"diffEditor.ignoreTrimWhitespace": true,
"diffEditor.experimental.showMoves": true,
"mergeEditor.diffAlgorithm": "advanced",
"javascript.inlayHints.parameterNames.enabled": "all",
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.inlayHints.parameterNames.enabled": "all",
"typescript.updateImportsOnFileMove.enabled": "always",
"files.associations": {
"*.json": "jsonc"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment