Skip to content

Instantly share code, notes, and snippets.

@elliotlarson
Last active June 15, 2017 22:02
Show Gist options
  • Select an option

  • Save elliotlarson/a6f1144319c6ed670a7b7bf9c1db2c49 to your computer and use it in GitHub Desktop.

Select an option

Save elliotlarson/a6f1144319c6ed670a7b7bf9c1db2c49 to your computer and use it in GitHub Desktop.
Visual Studio Code Setup
{
"window.zoomLevel": 1,
"vim.useCtrlKeys": true,
"editor.tabSize": 2,
"editor.fontSize": 11,
"editor.renderLineHighlight": false,
"vsicons.dontShowNewVersionMessage": true,
"workbench.activityBar.visible": false,
"typescript.check.workspaceVersion": false,
"typescript.check.tscVersion": false,
"explorer.openEditors.visible": 0,
"sync.gist": "",
"sync.lastUpload": "",
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.lastDownload": "",
"sync.version": 251,
"sync.showSummary": true,
"sync.forceDownload": false,
"sync.workspaceSync": false,
"sync.anonymousGist": false,
"files.autoSave": "onFocusChange",
"files.trimTrailingWhitespace": true,
"workbench.editor.enablePreview": false,
"workbench.iconTheme": "material-icon-theme",
"workbench.statusBar.visible": true,
"python.linting.enabled": false,
"jupyter.appendResults": false,
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.fontSize": 11,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.lineHeight": 1.1,
"python.editor.tabSize": 4,
"vim.enableNeovim": true,
"vim.disableAnnoyingNeovimMessage": true,
"material-icon-theme.showWelcomeMessage": false,
"vim.leader": ",",
"vim.statusBarColorControl": true,
"vim.statusBarColors" : {
"normal": "#0078cf",
"insert": "#d16900",
"visual": "#9d00d1f",
"visualline": "#9d00d1f",
"visualblock": "#9d00d1f",
"replace": "#000000"
},
"workbench.colorCustomizations": {
"statusBar.background": "#9d00d1f",
"statusBar.noFolderBackground": "#9d00d1f",
"statusBar.debuggingBackground": "#9d00d1f"
},
"vim.disableAnnoyingGcMessage": true,
"editor.cursorStyle": "line",
"material-icon-theme.showUpdateMessage": false,
"editor.minimap.enabled": false,
"editor.renderLineHighlight": "none",
"editor.renderIndentGuides": false,
"editor.renderWhitespace": "all"
}
Connorcpu.vsc-rustfmt
DotJoshJohnson.xml
IBM.output-colorizer
PKief.material-icon-theme
RolandGreim.sharecode
Zignd.html-css-class-completion
christian-kohler.path-intellisense
deerawan.vscode-dash
donjayamanne.githistory
donjayamanne.jupyter
donjayamanne.python
eg2.tslint
file-icons.file-icons
formulahendry.auto-close-tag
formulahendry.code-runner
hjleochen.rails-nav
jakethashi.vscode-angular2-emmet
johnpapa.Angular2
kaiwood.endwise
kalitaalexey.vscode-rust
kamikillerto.vscode-colorize
lukehoban.Go
magicstack.MagicPython
misogi.ruby-rubocop
msjsdiag.debugger-for-chrome
noku.rails-run-spec-vscode
otoniel-isidoro.vscode-ruby-ctags
rbbit.typescript-hero
rebornix.Ruby
robertohuertasm.vscode-icons
robinbentley.sass-indented
sporto.rails-go-to-spec
tht13.python
tmikoss.rails-latest-migration
tushortz.python-extended-snippets
vayan.haml
vscodevim.vim
waderyan.gitblame
wmaurer.change-case
xabikos.JavaScriptSnippets
xabikos.ReactSnippets
zhuangtongfa.Material-theme
ziyasal.vscode-open-in-github
[
{
"key": "ctrl+shift+t",
"command": "workbench.action.terminal.focus"
},
{
"key": "ctrl+shift+]",
"command": "workbench.action.terminal.focusNext"
},
{
"key": "ctrl+shift+[",
"command": "workbench.action.terminal.focusPrevious"
}
]
#!/bin/bash
cat vs-code-extensions.txt | while read extension; do
code --install-extension $extension
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment