Skip to content

Instantly share code, notes, and snippets.

@jairusjoer
Last active February 5, 2024 10:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jairusjoer/cca487e7adcdcfb6d4cabd859f578a1a to your computer and use it in GitHub Desktop.
Save jairusjoer/cca487e7adcdcfb6d4cabd859f578a1a to your computer and use it in GitHub Desktop.
My personal configuration for Visual Studio Code
{
"[javascriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"editor.bracketPairColorization.enabled": false,
"editor.cursorBlinking": "phase",
"editor.cursorSmoothCaretAnimation": "on",
"editor.fontFamily": "'Monaspace Neon', monospace",
"editor.fontLigatures": "'calt', 'liga', 'dlig', 'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08'",
"editor.fontSize": 12,
"editor.linkedEditing": true,
"editor.minimap.enabled": false,
"editor.renderWhitespace": "none",
"editor.rulers": [
80
],
"editor.stickyScroll.enabled": true,
"editor.tabSize": 2,
"explorer.compactFolders": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"files.associations": {
"*.inc": "php",
"*.module": "php",
"*.svg": "html",
"*.twig": "html",
"*.xml": "html"
},
"files.eol": "\n",
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"git.ignoreRebaseWarning": true,
"intelephense.format.braces": "k&r",
"intelephense.telemetry.enabled": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"security.workspace.trust.untrustedFiles": "open",
"tailwindCSS.emmetCompletions": true,
"telemetry.telemetryLevel": "off",
"typescript.updateImportsOnFileMove.enabled": "always",
"window.commandCenter": true,
"workbench.activityBar.location": "top",
"workbench.colorTheme": "Monokai Pro (Filter Spectrum)",
"workbench.iconTheme": "Monokai Pro (Filter Spectrum) Icons",
"workbench.layoutControl.enabled": false,
"workbench.startupEditor": "none",
"window.dialogStyle": "custom",
"window.titleBarStyle": "custom",
"workbench.editor.editorActionsLocation": "titleBar",
"breadcrumbs.enabled": false,
"workbench.colorCustomizations": {
"panel.background": "#191919",
"terminal.background": "#00000000",
"editorGroupHeader.tabsBackground": "#191919",
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment