当前位置: 首页 > 工具软件 > VSCodium > 使用案例 >

设置vscodium采用微软官方扩展源

关翰
2023-12-01

Ubuntu下 vsdodium 安装

#Add the GPG key of the repository:
ulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg | gpg --dearmor | sudo dd of=/etc/apt/trusted.gpg.d/vscodium.gpg
#Add the repository:
echo 'deb https://paulcarroty.gitlab.io/vscodium-deb-rpm-repo/debs/ vscodium main' | sudo tee --append /etc/apt/sources.list.d/vscodium.list
#Update then install vscodium:
sudo apt update && sudo apt install codium 

vscodium默认使用的扩展源是open-vsx.org,部分扩展没有加入此扩展源,需要使用微软官方扩展源才能直接安装和自动更新。

修改安装根目录/resources/app/product.json文件中的extensionsGallery键对应的值如下:

"extensionsGallery": {
    "serviceUrl": "https://marketplace.visualstudio.com/_apis/public/gallery",
    "itemUrl": "https://marketplace.visualstudio.com/items"
}

重启vscodium。扩展里就可以搜索安装微软官方扩展源里的扩展。

 类似资料: