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
}
相关推荐
superman超哥1 天前
Rust 错误处理模式:Result、?运算符与 anyhow 的最佳实践
开发语言·后端·rust·运算符·anyhow·rust 错误处理
Tony Bai1 天前
高并发后端:坚守 Go,还是拥抱 Rust?
开发语言·后端·golang·rust
哆啦code梦2 天前
Rust:高性能安全的现代编程语言
开发语言·rust
superman超哥2 天前
Rust 过程宏开发入门:编译期元编程的深度实践
开发语言·后端·rust·元编程·rust过程宏·编译期
借个火er2 天前
用 Tauri 2.0 + React + Rust 打造跨平台文件工具箱
react.js·rust
superman超哥2 天前
Rust Link-Time Optimization (LTO):跨边界的全局优化艺术
开发语言·后端·rust·lto·link-time·跨边界·优化艺术
superman超哥2 天前
Rust 编译优化选项配置:释放性能潜力的精细调控
开发语言·后端·rust·rust编译优化·精细调控·编译优化选项
superman超哥2 天前
Rust 日志级别与结构化日志:生产级可观测性实践
开发语言·后端·rust·可观测性·rust日志级别·rust结构化日志
superman超哥2 天前
Rust 减少内存分配策略:性能优化的内存管理艺术
开发语言·后端·性能优化·rust·内存管理·内存分配策略
superman超哥2 天前
Rust 并发性能调优:线程、异步与无锁的深度优化
开发语言·后端·rust·线程·异步·无锁·rust并发性能