SpecialistOff.NET / Вопросы / Статьи / Фрагменты кода / Резюме / Метки / Помощь / Файлы

Список вопросов Печать

Пример настроек для Visual Studio Code


Метки: visual studio code vscodium 

Ответы

RemiZOffAlex  Создано: 2019-07-28 00:25:34.300695  Обновлено: 2023-11-17 12:01:21.557559
// Place your settings in this file to overwrite the default settings
{
    "atomKeymap.promptV3Features": true,
    "editor.cursorStyle": "line",
    "editor.fontFamily": "'Liberation Mono'",
    "editor.fontSize": 14,
    "editor.multiCursorModifier": "ctrlCmd",
    "editor.renderWhitespace": "boundary",
    "editor.wrappingIndent": "none",
    "editor.autoIndent": "keep",
    "editor.wordWrap": "on",
    "editor.wordWrapColumn": 80,
    "editor.detectIndentation": false,
    "editor.minimap.maxColumn": 80,
    "editor.rulers": [
        80
    ],
    "explorer.confirmDelete": false,
    "explorer.confirmDragAndDrop": false,
    "extensions.ignoreRecommendations": false,
    "editor.scrollBeyondLastLine": false,
    "extensions.autoCheckUpdates": false,
    "extensions.autoUpdate": false,
    "files.insertFinalNewline": true,
    "files.exclude": {
        "**/CVS": true,
        "**/.DS_Store": true
    },
    "files.watcherExclude": {
        "**/.git/objects/**": false,
        "**/.git/subtree-cache/**": false,
        "**/node_modules/**": false
    },
    "files.trimFinalNewlines": true,
    "html.format.wrapLineLength": 80,
    "markdown.preview.fontFamily": "'Liberation Mono'",
    "npm.fetchOnlinePackageInfo": false,
    "python.pythonPath": "python3",
    "search.location": "panel",
    "telemetry.telemetryLevel": "off,
    "terminal.integrated.fontFamily": "'Liberation Mono'",
    "vscode-mysql.enableTelemetry": false,
    "workbench.colorTheme": "Default Light+",
    "workbench.startupEditor": "none",
    "window.zoomLevel": 0,
    "window.restoreWindows": "none",
    "window.menuBarVisibility": "default",
    "window.titleBarStyle": "custom",
    "update.showReleaseNotes": false,
    "workbench.settings.enableNaturalLanguageSearch": false,
    "workbench.enableExperiments": false,
    "workbench.startupEditor": "none",
    "update.mode": "none"
}

Возможно будут интересны и другие вопросы