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.

44 lines
1.5 KiB

9 months ago
9 months ago
8 months ago
3 months ago
9 months ago
3 months ago
8 months ago
3 months ago
8 months ago
3 months ago
4 months ago
3 months ago
4 months ago
4 months ago
4 months ago
3 months ago
4 months ago
9 months ago
  1. {
  2. "[ruby]": {
  3. "editor.defaultFormatter": "Shopify.ruby-lsp", // Use the Ruby LSP as the default formatter
  4. "editor.semanticHighlighting.enabled": true, // Enable semantic highlighting
  5. "editor.formatOnType": true // Enable formatting while typing
  6. },
  7. "[erb]": {
  8. "editor.defaultFormatter": "aliariff.vscode-erb-beautify",
  9. },
  10. "database-client.telemetry.usesOnlineServices": false,
  11. "debug.internalConsoleOptions": "neverOpen",
  12. "editor.formatOnSave": true,
  13. "editor.tabSize": 2, // Use 2 spaces for indentation
  14. "editor.insertSpaces": true,
  15. "emmet.includeLanguages": {
  16. "erb": "html"
  17. },
  18. "inlineFold.regex": "(class=|className=|class:\\s*)(({(`|))|(['\"`]))(.*?)(\\2|(\\4)})", // inline AlpineJs `class: `
  19. "files.associations": {
  20. "*.html.erb": "erb",
  21. "*.tailwind.css": "tailwindcss"
  22. },
  23. "tailwindCSS.emmetCompletions": true,
  24. "todohighlight.enableDiagnostics": true,
  25. "todohighlight.include": [
  26. "**/*.js",
  27. "**/*.html",
  28. "**/*.css",
  29. "**/*.rb",
  30. "**/*.txt",
  31. "**/*.md",
  32. "**/*.erb",
  33. "**/*.rake"
  34. ],
  35. "vscode-erb-beautify.keepBlankLines": 1,
  36. // -----------------256-color ANSI SUPPORT ----------------
  37. "terminal.integrated.shellIntegration.enabled": false,
  38. "terminal.integrated.minimumContrastRatio": 1,
  39. "terminal.integrated.drawBoldTextInBrightColors": false,
  40. "workbench.colorCustomizations": {
  41. "terminal.background": "#1f1f1f"
  42. },
  43. "workbench.colorTheme": "Default Dark Modern",
  44. // ---------------------------------------------------------
  45. }