vscode export and import extension list

extensions.txt

perl 复制代码
alibaba-cloud.tongyi-lingma
anthhub.fjson
cloris.rustjson
eamodio.gitlens
esbenp.prettier-vscode
itsyaasir.rust-feature-toggler
james-yu.latex-workshop
ms-ceintl.vscode-language-pack-zh-hans
ms-python.debugpy
ms-python.python
ms-python.vscode-pylance
ms-toolsai.jupyter-renderers
ms-vscode-remote.remote-ssh
ms-vscode-remote.remote-ssh-edit
ms-vscode-remote.remote-wsl
ms-vscode.cmake-tools
ms-vscode.cpptools
ms-vscode.cpptools-extension-pack
ms-vscode.cpptools-themes
ms-vscode.remote-explorer
redhat.vscode-xml
rust-lang.rust-analyzer
saoudrizwan.claude-dev
tamasfe.even-better-toml
tomoki1207.pdf
twxs.cmake
udoprog.rune-vscode
vadimcn.vscode-lldb
visualstudioexptteam.intellicode-api-usage-examples
vscjava.vscode-gradle
vscode-icons-team.vscode-icons
wk-j.save-and-run
xaver.clang-format

install.sh

css 复制代码
cat extensions.txt | xargs -L 1 code --install-extension

install.ps1

perl 复制代码
# Read the extensions from the file
$extensions = Get-Content -Path "extensions.txt"

# Loop through each extension and install it
foreach ($extension in $extensions) {
    code --install-extension $extension
}
相关推荐
Pomelo_刘金9 小时前
Rust 宣布发布1.88.0
rust
寻月隐君11 小时前
告别 Vec!掌握 Rust bytes 库,解锁零拷贝的真正威力
后端·rust·github
大卫小东(Sheldon)15 小时前
GIM 1.5发布了! 支持Windows系统了
git·ai·rust
寻月隐君16 小时前
告别竞态条件:基于 Axum 和 Serde 的 Rust 并发状态管理最佳实践
后端·rust·github
成遇10 天前
在Vscode中安装Sass并配置
vscode·rust·sass
止观止10 天前
Rust智能指针演进:从堆分配到零复制的内存管理艺术
开发语言·后端·rust
学無芷境10 天前
Cargo 与 Rust 项目
开发语言·后端·rust
Python私教10 天前
源滚滚AI编程:我为什么选择Rust开发博客项目
开发语言·rust·ai编程
机构师11 天前
<tauri><threejs><rust><GUI>基于tauri和threejs,实现一个3D图形浏览程序
javascript·后端·rust