Skip to content

Instantly share code, notes, and snippets.

@sixman9
Created August 13, 2019 17:12
Show Gist options
  • Select an option

  • Save sixman9/b946bf74b274d16091bbb370f5538697 to your computer and use it in GitHub Desktop.

Select an option

Save sixman9/b946bf74b274d16091bbb370f5538697 to your computer and use it in GitHub Desktop.

Revisions

  1. sixman9 created this gist Aug 13, 2019.
    39 changes: 39 additions & 0 deletions installExtensions.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,39 @@
    #!/bin/sh

    extensionList=(
    formulahendry.auto-close-tag
    formulahendry.auto-complete-tag
    formulahendry.auto-rename-tag
    CoenraadS.bracket-pair-colorizer
    wmaurer.change-case
    Shan.code-settings-sync
    streetsidesoftware.code-spell-checker
    naumovs.color-highlight
    alexdima.copy-relative-path
    dsznajder.es7-react-js-snippets
    flowtype.flow-for-vscode
    waderyan.gitblame
    wix.glean
    yzhang.markdown-all-in-one
    christian-kohler.npm-intellisense
    christian-kohler.path-intellisense
    esbenp.prettier-vscode
    2gua.rainbow-brackets
    kelset.rn-full-pack
    jasonnutter.search-node-modules
    dbaeumer.vscode-eslint
    mgmcdermott.vscode-language-babel
    DavidAnson.vscode-markdownlint
    eg2.vscode-npm-script
    msjsdiag.vscode-react-native
    cssho.vscode-svgviewer
    wayou.vscode-todo-highlight
    ms-vscode.vscode-typescript-tslint-plugin
    VisualStudioExptTeam.vscodeintellicode
    wallabyjs.quokka-vscode
    )

    for i in "${extensionList[@]}"; do
    #echo "$i"
    code --install-extension "$i"
    done