Skip to content

Instantly share code, notes, and snippets.

@llagerlof
Last active November 1, 2019 15:22
Show Gist options
  • Save llagerlof/128eedd0b26c105b38e1abf1e2fa8787 to your computer and use it in GitHub Desktop.
Save llagerlof/128eedd0b26c105b38e1abf1e2fa8787 to your computer and use it in GitHub Desktop.
My Visual Studio Code USER SETTINGS
{
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"window.title": "${dirty}\\${folderName}\\${activeEditorMedium}",
"window.zoomLevel": 0,
"workbench.editor.openPositioning": "first",
"workbench.startupEditor": "newUntitledFile",
"workbench.colorCustomizations": {
"githd.blameView.info": "#FFFFFF77",
"editorGutter.background": "#222222",
"editor.lineHighlightBackground": "#222222"
},
"explorer.sortOrder": "default",
"extensions.ignoreRecommendations": true,
"editor.renderControlCharacters": false,
"editor.minimap.enabled": false,
"editor.renderWhitespace": "boundary",
"editor.multiCursorModifier": "ctrlCmd",
"editor.dragAndDrop": false,
"editor.links": false,
"editor.fontFamily": "'Courier New', Consolas, monospace",
"editor.fontSize": 14,
"editor.cursorSmoothCaretAnimation": true,
"editor.suggestSelection": "first",
"editor.rulers": [150],
"editor.wordWrapColumn": 150,
"editor.wordWrap": "wordWrapColumn",
"diffEditor.ignoreTrimWhitespace": false,
"diffEditor.renderSideBySide": false,
"files.trimTrailingWhitespace": true,
"files.eol": "\n",
"files.encoding": "utf8",
"php-docblocker.returnGap": false,
"java.home": "c:\\Program Files\\openjdk-1.8.0",
"java.configuration.checkProjectSettingsExclusions": false,
"regex-previewer.enableCodeLens": false,
"githd.blameView.enabled": false,
"[php]": {
"editor.defaultFormatter": "kokororin.vscode-phpfmt"
},
"todo-tree.highlights.enabled": true,
}
@llagerlof
Copy link
Author

{
    "telemetry.enableCrashReporter": false,
    "telemetry.enableTelemetry": false,

    "window.title": "${dirty}\\${folderName}\\${activeEditorMedium}",

    "workbench.editor.openPositioning": "first",

    "explorer.sortOrder": "modified",

    "extensions.ignoreRecommendations": true,

    "editor.renderControlCharacters": false,
    "editor.minimap.enabled": false,
    "editor.renderWhitespace": "boundary",
    "editor.multiCursorModifier": "ctrlCmd",
    "editor.dragAndDrop": false,
    "editor.links": false,
    "editor.fontFamily": "'Courier New', Consolas, monospace",
    "editor.fontSize": 14,
    "editor.cursorSmoothCaretAnimation": true,
    "editor.suggestSelection": "first",

    "diffEditor.ignoreTrimWhitespace": false,

    "search.usePCRE2": true,

    "files.trimTrailingWhitespace": true,
    "files.eol": "\n",
    "files.encoding": "utf8",
    "files.exclude": {
        "**/template_c": true,
        "**/templates_c": true
    },
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment