You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
590 B

9 months ago
9 months ago
  1. {
  2. // All of these settings are scoped only to the Ruby language
  3. "[ruby]": {
  4. "editor.defaultFormatter": "Shopify.ruby-lsp", // Use the Ruby LSP as the default formatter
  5. "editor.formatOnSave": true, // Format files automatically when saving
  6. "editor.tabSize": 2, // Use 2 spaces for indentation
  7. "editor.insertSpaces": true, // Use spaces and not tabs for indentantion
  8. "editor.semanticHighlighting.enabled": true, // Enable semantic highlighting
  9. "editor.formatOnType": true // Enable formatting while typing
  10. },
  11. "emmet.includeLanguages": {
  12. "erb": "html"
  13. }
  14. }