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.
14 lines
590 B
14 lines
590 B
{
|
|
// All of these settings are scoped only to the Ruby language
|
|
"[ruby]": {
|
|
"editor.defaultFormatter": "Shopify.ruby-lsp", // Use the Ruby LSP as the default formatter
|
|
"editor.formatOnSave": true, // Format files automatically when saving
|
|
"editor.tabSize": 2, // Use 2 spaces for indentation
|
|
"editor.insertSpaces": true, // Use spaces and not tabs for indentantion
|
|
"editor.semanticHighlighting.enabled": true, // Enable semantic highlighting
|
|
"editor.formatOnType": true // Enable formatting while typing
|
|
},
|
|
"emmet.includeLanguages": {
|
|
"erb": "html"
|
|
}
|
|
}
|