Skip to content

Instantly share code, notes, and snippets.

@sauron
Last active December 2, 2025 15:25
Show Gist options
  • Select an option

  • Save sauron/1957eb6640b0e5562da6618b406d2098 to your computer and use it in GitHub Desktop.

Select an option

Save sauron/1957eb6640b0e5562da6618b406d2098 to your computer and use it in GitHub Desktop.
VS Code Settings. Dark Mode. Big Fonts. No panels. Focus Mode.
{
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": false,
"editor.renderWhitespace": "all",
"editor.scrollBeyondLastLine": false,
"files.insertFinalNewline": true,
"editor.find.seedSearchStringFromSelection": true,
"editor.fontSize": 15,
"editor.tabSize": 4,
"editor.wordWrap": "on",
"window.newWindowDimensions": "maximized",
"vetur.completion.useScaffoldSnippets": false,
"vetur.validation.template": false,
"eslint.validate": [
{
"language": "vue",
"autoFix": true
},
{
"language": "html",
"autoFix": true
},
{
"language": "javascript",
"autoFix": true
}
],
"eslint.autoFixOnSave": false,
"editor.formatOnSave": false,
"vetur.format.enable": false,
"vetur.format.defaultFormatter.js": "none",
"vetur.format.defaultFormatter.ts": "none",
"javascript.format.insertSpaceBeforeFunctionParenthesis": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"editor.minimap.enabled": false,
"workbench.editor.showTabs": "single",
"workbench.sideBar.location": "right",
"workbench.iconTheme": null,
/* Terminal customization */
"terminal.integrated.fontSize": 13,
"editor.fontFamily": "Menlo, 'Cartograph CF Light', Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"files.trimTrailingWhitespace": true,
// "workbench.preferredLightColorTheme": "Eva Light Bold",
// "workbench.preferredDarkColorTheme": "Natty",
"workbench.colorCustomizations": {
// "editor.background": "#0e172a",
// "editorWidget.background": "#1f2738bb",
"editorHoverWidget.background": "#2d3750",
// "sideBar.background": "#0e172a",
"sideBarSectionHeader.background": "#2a354b55",
"terminal.background": "#0e172a",
"editorLineNumber.activeForeground": "#586374",
"editorLineNumber.dimmedForeground": "#586374",
"editorLineNumber.foreground": "#58637466",
"scrollbarSlider.activeBackground": "#000c20",
"scrollbarSlider.background": "#000c20",
"scrollbarSlider.hoverBackground": "#000c20",
// "sideBar.border": "#63697355",
},
"window.autoDetectColorScheme": false,
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar",
"php-cs-fixer.lastDownload": 1764170051252,
"php-cs-fixer.onsave": true,
"security.workspace.trust.untrustedFiles": "open",
"editor.inlineSuggest.enabled": true,
"editor.unicodeHighlight.ambiguousCharacters": false,
"workbench.colorTheme": "Natty",
"cmake.showOptionsMovedNotification": false,
"chat.commandCenter.enabled": false,
"files.eol": "\n",
"git.blame.statusBarItem.enabled": true,
"git.blame.editorDecoration.enabled": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment