Skip to content

Instantly share code, notes, and snippets.

@pLogicador
Created December 14, 2024 01:29
Show Gist options
  • Save pLogicador/884244598bc3ea6fe523845e8d33d2a1 to your computer and use it in GitHub Desktop.
Save pLogicador/884244598bc3ea6fe523845e8d33d2a1 to your computer and use it in GitHub Desktop.
My list of extensions for VS Code
# CSS Formatter - Formats CSS files automatically
aeschli.vscode-css-formatter
# Django - Adds support for Django framework
batisteo.vscode-django
# Tailwind CSS IntelliSense - Autocompletes Tailwind CSS classes
bradlc.vscode-tailwindcss
# ESLint - Integrates ESLint for linting JavaScript/TypeScript code
dbaeumer.vscode-eslint
# APC Extension - Auto-closes parentheses and brackets
drcika.apc-extension
# EditorConfig - Supports .editorconfig files for consistent coding styles
editorconfig.editorconfig
# Prettier - Code formatter
esbenp.prettier-vscode
# Code Runner - Run snippets of code in multiple languages
formulahendry.code-runner
# Google Translate - Translate text directly in VS Code
funkyremi.vscode-google-translate
# REST Client - Test APIs directly in VS Code
humao.rest-client
# Git Graph - Visualize your Git repository history
mhutchie.git-graph
# Symbols - Improved navigation with symbols in the project
miguelsolorio.symbols
# Docker - Tools for Docker integration
ms-azuretools.vscode-docker
# Remote - Containers - Develop in containers
ms-vscode-remote.remote-containers
# Remote - WSL - Develop in Windows Subsystem for Linux
ms-vscode-remote.remote-wsl
# Reload - Reload VS Code window quickly
natqe.reload
# Color Highlight - Highlights color codes like #hex, rgb()
naumovs.color-highlight
# OM Themes - A collection of themes for VS Code
omthemes.omthemes
# Material Icon Theme - Adds Material Design icons to Explorer
pkief.material-icon-theme
# Live Server - Launch a local server with auto-reload for front-end development
ritwickdey.liveserver
# Code Spell Checker - Checks spelling in code
streetsidesoftware.code-spell-checker
# Portuguese (Brazilian) Spell Checker - Adds Portuguese support to the spell checker
streetsidesoftware.code-spell-checker-portuguese-brazilian
# Styled Components - Adds syntax highlighting for styled-components in React
styled-components.vscode-styled-components
# PDF Viewer - View PDF files directly in VS Code
tomoki1207.pdf
# IntelliCode API Examples - Shows examples of API usage
visualstudioexptteam.intellicode-api-usage-examples
# IntelliCode - AI-assisted code suggestions
visualstudioexptteam.vscodeintellicode

How to Backup and Restore VS Code Extensions

This guide explains how to export, save, and reinstall your Visual Studio Code extensions on a new setup or after reinstalling the editor.

Step 1: Export Extensions

Run the following command in the terminal to export your current extensions to a file:

code --list-extensions > extensions-list.txt

Step 2: Restore Extensions

To reinstall extensions from your backup file, use the following command:

cat extensions-list.txt | xargs -n 1 code --install-extension
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment