vscode 一键导出导入所有插件
导出插件
code --list-extensions > extensions.txt
这是我的插件列表
# extension.txt
1yib.rust-bundle
1yib.svelte-bundle
aaron-bond.better-comments
adrianwilczynski.format-selection-as-html
adrianwilczynski.terminal-commands
alberto-varela.unsafe-typescript
alefragnani.bookmarks
alefragnani.project-manager
antfu.browse-lite
antfu.iconify
antfu.icons-carbon
antfu.unocss
antfu.vite
antfu.where-am-i
anysphere.cursorpyright
anysphere.remote-containers
ardenivanov.svelte-intellisense
at-9420.console-helper
aykutsarac.jsoncrack-vscode
bengreenier.vscode-node-readme
bracketpaircolordlw.bracket-pair-color-dlw
bradlc.vscode-tailwindcss
catppuccin.catppuccin-vsc-icons
chakrounanas.turbo-console-log
christian-kohler.npm-intellisense
christian-kohler.path-intellisense
chrmarti.regex
codeinchinese.chineseinputassistant
codezombiech.gitignore
csstools.postcss
cweijan.dbclient-jdbc
cweijan.vscode-database-client2
dannymcgee.vscode-go-grammar
dbaeumer.vscode-eslint
demystifying-javascript.javascript-fullstack-developer-extension-pack
dominicvonk.parameter-hints
donjayamanne.git-extension-pack
donjayamanne.githistory
dsznajder.es7-react-js-snippets
dunstontc.vscode-go-syntax
dustypomerleau.rust-syntax
eamodio.gitlens
ecmel.vscode-html-css
editorconfig.editorconfig
eriklynd.json-tools
esbenp.prettier-vscode
fake-cursor.cursor-fake-machine
file-icons.file-icons
fill-labs.dependi
fivethree.vscode-svelte-snippets
formulahendry.auto-close-tag
formulahendry.auto-rename-tag
franneck94.c-cpp-runner
github.codespaces
github.remotehub
github.vscode-github-actions
github.vscode-pull-request-github
glenn2223.live-sass
golang.go
grasspy.autopunc
gregorbiswanger.json2ts
hediet.vscode-drawio
hollowtree.vue-snippets
johnpapa.vscode-cloak
johnsoncodehk.vscode-tsconfig-helper
juggernautjp.less-toml
julianchen.babylon-js-viewer
kevinrose.vsc-python-indent
kisstkondoros.vscode-gutter-preview
lanqiao-dev.lqcourse-study-statistics
leodevbro.blockman
lninl.theme-hbuilderx-soft-green-light
lokalise.i18n-ally
maggie.eslint-rules-zh-plugin
mechatroner.rainbow-csv
melihaltintas.svelte-format
mhutchie.git-graph
mikestead.dotenv
misterj.vue-volar-extention-pack
mrcrowl.easy-less
ms-azuretools.vscode-docker
ms-ceintl.vscode-language-pack-zh-hans
ms-python.autopep8
ms-python.black-formatter
ms-python.debugpy
ms-python.isort
ms-python.pylint
ms-python.python
ms-vscode-remote.remote-containers
ms-vscode-remote.remote-ssh
ms-vscode-remote.remote-ssh-edit
ms-vscode-remote.remote-wsl
ms-vscode.azure-repos
ms-vscode.cmake-tools
ms-vscode.cpptools
ms-vscode.cpptools-extension-pack
ms-vscode.cpptools-themes
ms-vscode.makefile-tools
ms-vscode.remote-explorer
ms-vscode.remote-repositories
ms-vscode.remote-server
natizyskunk.sftp
naumovs.color-highlight
njpwerner.autodocstring
njqdev.vscode-python-typehint
pivaszbs.svelte-autoimport
pnp.polacode
pranaygp.vscode-css-peek
proxzima.sweetdracula
qwtel.sqlite-viewer
rangav.vscode-thunder-client
rust-lang.rust-analyzer
rvest.vs-code-prettier-eslint
saekiraku.rainbow-fart
sdras.vue-vscode-snippets
searking.preview-vscode
serayuzgur.crates
shahilkumar.readme-parser
shardulm94.trailing-spaces
sibiraj-s.vscode-scss-formatter
simonhe.vscode-highlight-text
simonsiefke.svg-preview
sirtori.indenticator
slevesque.shader
steoates.autoimport
streetsidesoftware.code-spell-checker
stylelint.vscode-stylelint
svelte.svelte-vscode
swellaby.rust-pack
syler.sass-indented
taiyuuki.vscode-cargo-scripts
tarrow.css-class-intellisense
tatsy.vscode-3d-preview
tauri-apps.tauri-vscode
techer.open-in-browser
tobermory.es6-string-html
twxs.cmake
tyriar.sort-lines
uctakeoff.vscode-counter
usernamehw.errorlens
vadimcn.vscode-lldb
vue.volar
wakatime.vscode-wakatime
wix.vscode-import-cost
wscats.vue
xabikos.javascriptsnippets
xplot.sshtools
yandeu.five-server
yasht.terminal-all-in-one
yoavbls.pretty-ts-errors
yzhang.dictionary-completion
yzhang.markdown-all-in-one
zdldove.excel2json
zhoufeng.pyqt-integration
ziyasal.vscode-open-in-github
znck.grammarly
导入插件
cat extensions.txt | xargs -L 1 code --install-extension
如果需要换ide的话,把这里的 code 改为该 ide 的shell 就行了