Skip to content

Instantly share code, notes, and snippets.

@mbuckley
Last active June 12, 2018 17:33
Show Gist options
  • Save mbuckley/01712c8f30b43543a3626b985ef46103 to your computer and use it in GitHub Desktop.
Save mbuckley/01712c8f30b43543a3626b985ef46103 to your computer and use it in GitHub Desktop.

Add your vscode executable to your path

macOs:

cat << EOF >> ~/.bash_profile
# Add Visual Studio Code (code)
export PATH="\$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin"
EOF

Run these commands from your terminal to install extensions

code --install-extension 2ndshift.fresh-material
code --install-extension CoenraadS.bracket-pair-colorizer
code --install-extension CraigMaslowski.erb
code --install-extension Orta.vscode-jest
code --install-extension andys8.jest-snippets
code --install-extension bubersson.theme-hop-light
code --install-extension christian-kohler.path-intellisense
code --install-extension eg2.tslint
code --install-extension esbenp.prettier-vscode
code --install-extension ms-vscode.Go
code --install-extension ms-vsliveshare.vsliveshare
code --install-extension octref.vetur
code --install-extension waderyan.gitblame
code --install-extension wayou.vscode-todo-highlight
{
"editor.fontSize": 14,
// Download firacode from https://github.com/tonsky/FiraCode
"editor.fontFamily": "FiraCode-Retina",
"editor.fontLigatures": true,
"editor.tabCompletion": true,
"terminal.integrated.fontLigatures": false,
"typescript.check.tscVersion": false,
"editor.wordWrap": "off",
"files.insertFinalNewline": true,
"window.zoomLevel": 0,
"workbench.iconTheme": "material-icon-theme",
"search.exclude": {
"**/node_modules": false,
"**/bower_components": true
},
// The number of spaces a tab is equal to. This setting is overriden based on the file contents when `editor.detectIndentation` is on.
"editor.tabSize": 2,
"files.trimTrailingWhitespace": true,
"editor.renderControlCharacters": true,
"files.associations": {
"*.erb": "erb"
},
"material-icon-theme.showWelcomeMessage": false,
"workbench.colorTheme": "Fresh Material - Blue"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment