Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

VSCodium

VSCodium is a community-driven, freely-licensed binary distribution of Microsoft’s editor VS Code.
Microsoft’s vscode source code is open source (MIT-licensed), but the product available for download (Visual Studio Code) is licensed under this not-FLOSS license and contains telemetry/tracking.
The VSCodium project exists so that you don’t have to download+build from source. This project includes special build scripts that clone Microsoft’s vscode repo, run the build commands, and upload the resulting binaries for you to GitHub releases. These binaries are licensed under the MIT license. Telemetry is disabled. [vscodium.com]

VSCodium是一个社区驱动的、自由许可的微软编辑器VS Code的二进制分发版。
微微软的vscode源代码是开源的(MIT许可证),但可下载的产品(Visual Studio Code)是根据这种非FLOSS许可证授权的,并包含遥测/追踪。
VSCodium项目的存在是为了让你无需从源代码下载+构建。该项目包含特殊的构建脚本,会克隆微软的vscode代码库,运行构建命令,并将生成的二进制文件上传到GitHub发布。这些二进制文件是根据MIT许可证授权的。遥测被禁用。 [vscodium.com]

install

## Arch
yay -S --noconfirm vscodium-bin vscodium-bin-marketplace
# Windows 10
scoop install vscodium

config

VSCodium → Settings → Open Settings (JSON):

// Windows 10
{
    "terminal.integrated.profiles.windows": {
        "Cmder": {
            "path": [
                "${env:windir}\\Sysnative\\cmd.exe",
                "${env:windir}\\System32\\cmd.exe"
            ],
            "args": [
                "/k C:\\Users\\User\\Usr\\Opt\\cmder_mini\\vendor\\init.bat"
            ]
        }
    },
    "terminal.integrated.defaultProfile.windows": "Cmder",
    "terminal.integrated.tabs.enableAnimation": false
}

reference

cross-reference

resource

mark

later

extra

cache