Skip to content

Instantly share code, notes, and snippets.

@thadeu
Last active April 10, 2018 18:06
Show Gist options
  • Save thadeu/d99c7811a869e5d4b7cc93a1ced5141b to your computer and use it in GitHub Desktop.
Save thadeu/d99c7811a869e5d4b7cc93a1ced5141b to your computer and use it in GitHub Desktop.
VSCode UserSettings
{
"ruby.rubocop.executePath": "/Users/thadeu/.rbenv/shims/",
"csscomb.formatOnSave": true,
"csscomb.preset": "zen",
"csscomb.preset": {
"sort-order": [
["$variable"],
["$include"]
],
"sort-order-fallback": "abc",
"color-shorthand": true,
},
"terminal.integrated.shell.osx": "/bin/bash",
"terminal.integrated.fontFamily": "Monaco",
"terminal.integrated.fontSize": 12,
"terminal.integrated.rightClickCopyPaste": true,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 5000,
"editor.tabSize": 2,
"editor.autoIndent": true,
"editor.insertSpaces": true,
"editor.renderWhitespace": "none",
"editor.detectIndentation": true,
"search.exclude": {
"**/.git": true,
"**/node_modules": true,
"**/bower_components": true,
"**/tmp": true,
"**/.bundle": true,
"**/.vscode": true,
"**/log": true,
"**/test": true,
"**/vendor": true
},
"window.zoomLevel": 0,
"workbench.iconTheme": "vs-seti",
"editor.fontSize": 14,
"workbench.welcome.enabled": false,
"workbench.colorCustomizations": {
"activityBar.background": "#21252B",
"editor.background": "#21252B",
"editorGroupHeader.tabsBackground": "#21252B",
"tab.activeBackground": "#21252B",
"editorIndentGuide.background": "#2c313a"
},
"files.associations": {
"*.js.erb": "erb"
},
"extensions.ignoreRecommendations": true,
"emmet.includeLanguages": {
"erb": "html",
"twig": "html"
},
"typescript.check.npmIsInstalled": false,
"editor.minimap.enabled": false,
"team.showWelcomeMessage": false,
"explorer.confirmDragAndDrop": false,
"git.enableSmartCommit": true,
"git.confirmSync": false,
"editor.renderControlCharacters": true,
"ctags": {
"executePath": "/Users/thadeu/.rbenv/shims/ripper-tags",
"options": "--tag-file=.tags --recursive --force --exclude=.bundle --exclude=.git/ --exclude=coverage/ --exclude=.arcanist-extensions/ --exclude=log/ --exclude=tmp/ --exclude=bin/",
"fileName": ".tags"
},
"workbench.activityBar.visible": true,
"workbench.colorTheme": "One Dark Pro Vivid",
"extensions.autoUpdate": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment