Skip to content

Instantly share code, notes, and snippets.

@esradev
Created December 1, 2024 10:47
Show Gist options
  • Save esradev/f856885ecf85fc4156e52794d680539d to your computer and use it in GitHub Desktop.
Save esradev/f856885ecf85fc4156e52794d680539d to your computer and use it in GitHub Desktop.
Visual Studio Code settings.json
{
"editor.fontFamily": "JetBrainsMono Nerd Font Propo, FiraCode Nerd Font, Cascadia Mono NF, monospace",
"editor.fontSize": 16,
"editor.fontLigatures": true,
"editor.lineHeight": 30,
"editor.tabSize": 2,
"editor.minimap.enabled": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.stickyScroll.enabled": false,
"editor.quickSuggestions": {
"strings": true
},
"editor.dropIntoEditor.enabled": true,
"workbench.layoutControl.enabled": false,
"workbench.editor.empty.hint": "hidden",
"workbench.tree.enableStickyScroll": false,
"workbench.iconTheme": "catppuccin-macchiato",
"workbench.colorTheme": "Houston",
"workbench.colorCustomizations": {
"editor.background": "#030712",
"editorLineNumber.activeForeground": "#51F4C8",
"sideBar.background": "#111827",
"activityBar.background": "#111827",
"statusBar.background": "#111827",
"titleBar.activeBackground": "#111827",
"titleBar.inactiveBackground": "#111827",
"editorGutter.background": "#030712",
"editorGroupHeader.tabsBackground": "#111827",
"editorGroupHeader.tabsBorder": "#111827",
"tab.activeBackground": "#030712",
"tab.inactiveBackground": "#111827",
"tab.activeBorder": "#030712",
"tab.inactiveBorder": "#111827",
"tab.hoverBackground": "#030712",
"tab.activeBorderTop": "#51F4C8",
"breadcrumb.background": "#111827",
"breadcrumbPicker.background": "#111827",
"editorGroup.border": "#111827",
"editorWidget.background": "#111827",
"editorWidget.border": "#111827",
"editorCursor.foreground": "#51F4C8",
"input.background": "#111827",
"terminal.background": "#111827",
"terminal.foreground": "#51F4C8",
"editor.lineHighlightBackground": "#111827",
"editor.selectionBackground": "#51f4c92c",
"textLink.foreground": "#51F4C8"
},
"prettier.printWidth": 9999,
"prettier.trailingComma": "none",
"prettier.quoteProps": "preserve",
"prettier.arrowParens": "avoid",
"files.associations": {
"*.js": "javascriptreact",
"*.css": "tailwindcss"
},
"telemetry.telemetryLevel": "off",
"breadcrumbs.enabled": false,
"window.commandCenter": false,
"extensions.ignoreRecommendations": true,
"security.workspace.trust.enabled": false,
"html.autoClosingTags": false,
"git.openRepositoryInParentFolders": "never"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment