Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. # Visual Code - Backup List of Installed Extensions, Settings and Keybindings
  2.  
  3. ## List Extensions
  4.  
  5. ### Set VS Code Path
  6. Open the Command Palette (**โ‡งโŒ˜P**) and type 'shell command' to find the
  7. **Shell Command: Install 'code' command in PATH** command.
  8.  
  9. ### List installed extensions (+Install Statement)
  10.  
  11. **Run command in terminal**:
  12.  
  13. ```bash
  14. code --list-extensions | xargs -L 1 echo code --install-extension
  15. ```
  16.  
  17. **Output**:
  18.  
  19. ```bash
  20. # ....
  21. code --install-extension 1tontech.angular-material
  22. code --install-extension abusaidm.html-snippets
  23. code --install-extension actboy168.lua-debug
  24. code --install-extension Angular.ng-template
  25. code --install-extension AngularDoc.angulardoc-vscode
  26. code --install-extension azemoh.one-monokai
  27. code --install-extension christian-kohler.path-intellisense
  28. code --install-extension cyrilletuzi.angular-schematics
  29. code --install-extension DavidAnson.vscode-markdownlint
  30. code --install-extension dbaeumer.jshint
  31. # ....
  32. ```
  33.  
  34. ## Locate VS Code Settings and Keybindungs
  35.  
  36. ```bash
  37. $ cd ~/Library/Application Support/Code/User
  38.  
  39. $ ls *.json
  40. keybindings.json settings.json
  41. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement