VScode中settings.json

setting.json文件

//PowerShell中"&&"更换为";"
{
    "git.ignoreMissingGitWarning": true,
    "editor.fontSize": 20,
    "editor.suggestSelection": "first",
    "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
    "python.linting.enabled": false,
    "editor.renderWhitespace": "none",
    "C_Cpp.updateChannel": "Insiders",
    "editor.renderControlCharacters": false,
    "breadcrumbs.enabled": false,
    "code-runner.runInTerminal": true,
    "code-runner.saveAllFilesBeforeRun": true,
    "code-runner.saveFileBeforeRun": true,
    "code-runner.clearPreviousOutput": true,
    "code-runner.executorMap": {
        "javascript": "node",
        "php": "C:\\php\\php.exe",
        "python": "cd $dir ; python $fileName",
        "perl": "perl",
        "ruby": "C:\\Ruby23-x64\\bin\\ruby.exe",
        "go": "go run",
        "html": "\"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe\"",
        "java": "cd $dir ; javac $fileName ; java $fileNameWithoutExt",
        "c": "cd $dir ; gcc $fileName -o $fileNameWithoutExt ; ./$fileNameWithoutExt",
        "cpp": "cd $dir ; g++ $fileName -o $fileNameWithoutExt ; ./$fileNameWithoutExt"
    }
}

插件配置

VScode中settings.json_第1张图片

你可能感兴趣的:(其他)