Skip to content

Instantly share code, notes, and snippets.

@alfmatos
Last active February 11, 2019 00:27
Show Gist options
  • Save alfmatos/b2655aa859893644a11ced502571563f to your computer and use it in GitHub Desktop.
Save alfmatos/b2655aa859893644a11ced502571563f to your computer and use it in GitHub Desktop.
Visual Studio Code Config for Rails development
{
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"workbench.statusBar.feedback.visible": false,
"workbench.activityBar.visible": true,
"workbench.colorTheme": "Material Theme High Contrast",
"materialTheme.accent": "Acid Lime",
"workbench.iconTheme": "eq-material-theme-icons",
"workbench.colorCustomizations": {
"activityBarBadge.background": "#C6FF00",
"list.activeSelectionForeground": "#C6FF00",
"list.inactiveSelectionForeground": "#C6FF00",
"list.highlightForeground": "#C6FF00",
"scrollbarSlider.activeBackground": "#C6FF0050",
"editorSuggestWidget.highlightForeground": "#C6FF00",
"textLink.foreground": "#C6FF00",
"progressBar.background": "#C6FF00",
"pickerGroup.foreground": "#C6FF00",
"tab.activeBorder": "#C6FF00",
"notificationLink.foreground": "#C6FF00",
"editorWidget.resizeBorder": "#C6FF00",
"editorWidget.border": "#C6FF00",
"settings.modifiedItemIndicator": "#C6FF00",
"settings.headerForeground": "#C6FF00",
"panelTitle.activeBorder": "#C6FF00",
"breadcrumb.activeSelectionForeground": "#C6FF00",
"menu.selectionForeground": "#C6FF00",
"menubar.selectionForeground": "#C6FF00"
},
"window.titleBarStyle": "native",
"window.zoomLevel": 0.5,
"breadcrumbs.enabled": true,
"editor.fontSize": 12,
"editor.rulers": [ 80, 120 ],
"editor.cursorStyle": "line-thin",
"[ruby]": {
"editor.autoIndent": true,
"editor.tabSize": 2
},
"ruby.codeCompletion": "rcodetools",
"ruby.format": "rubocop",
"ruby.lint": {
"rubocop": true
},
"ruby.lintDebounceTime": 500,
"ruby.intellisense": "rubyLocate",
"[html.erb]": {
"editor.autoIndent": true,
"editor.tabSize": 2
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment