Skip to content

Commit

Permalink
Save/restore vscode extension
Browse files Browse the repository at this point in the history
  • Loading branch information
KELiON committed Jun 27, 2017
1 parent b1220f2 commit 26bc44c
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 0 deletions.
21 changes: 21 additions & 0 deletions vscode/extensions
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
2gua.rainbow-brackets
EditorConfig.EditorConfig
HookyQR.beautify
Zignd.html-css-class-completion
alefragnani.project-manager
andischerer.theme-atom-one-dark
christian-kohler.npm-intellisense
christian-kohler.path-intellisense
dbaeumer.vscode-eslint
donjayamanne.githistory
flowtype.flow-for-vscode
freebroccolo.theme-atom-one-dark
gerane.Theme-Solarized-light
jcbuisson.vue
lukehoban.Go
ms-vscode.sublime-keybindings
msjsdiag.debugger-for-chrome
octref.vetur
robertohuertasm.vscode-icons
tonsky.theme-alabaster
vscodevim.vim
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions vscode/settings/settings
File renamed without changes.
File renamed without changes.
15 changes: 15 additions & 0 deletions vscode/setup
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/sh
set -x

settings_path=~/Library/Application\ Support/Code/User

if [[ -f $settings_path ]]
then
rm -rf $settings_path
fi

# symlink settings in
ln -s ~/.dotfiles/vscode/settings $settings_path

# install all extensions from list
while read in; do code --install-extension "$in"; done < ~/.dotfiles/vscode/extensions
1 change: 1 addition & 0 deletions vscode/update-extensions-list
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
code --list-extensions > ~/.dotfiles/vscode/extensions

0 comments on commit 26bc44c

Please sign in to comment.