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
}
相关推荐
weixin_387534227 小时前
Ownership - Rust Hardcore Head to Toe
开发语言·后端·算法·rust
luffy54599 小时前
Rust语言入门-变量篇
开发语言·后端·rust
好家伙VCC10 小时前
# 发散创新:用 Rust构建高性能游戏日系统,从零实现事件驱动架构 在现代游戏开发中,**性能与可扩展性**是核心命题。传统基于
java·python·游戏·架构·rust
Source.Liu13 小时前
【Iced】transformation.rs文件解析
rust·iced
小杍随笔16 小时前
【Rust 语言编程知识与应用:闭包详解】
开发语言·后端·rust
Ivanqhz17 小时前
图着色寄存器分配算法(Graph Coloring)
开发语言·javascript·python·算法·蓝桥杯·rust
42tr_k1 天前
Rust LanceDB 内存不足问题
rust
Source.Liu2 天前
【Iced】benches 文件夹分析笔记
rust·iced
Source.Liu2 天前
【glam】线性代数库 lib.rs 文件解析
rust·glam
大黄说说2 天前
Rust 入门到实战:构建安全、高性能的下一代系统
开发语言·安全·rust