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.
35 lines
1.4 KiB
35 lines
1.4 KiB
{
|
|
// 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.semanticHighlighting.enabled": true, // Enable semantic highlighting
|
|
"editor.formatOnType": true // Enable formatting while typing
|
|
},
|
|
"[erb]": {
|
|
"editor.defaultFormatter": "aliariff.vscode-erb-beautify",
|
|
},
|
|
"emmet.includeLanguages": {
|
|
"erb": "html"
|
|
},
|
|
"files.associations": {
|
|
"*.html.erb": "erb",
|
|
"*.tailwind.css": "tailwindcss"
|
|
},
|
|
"vscode-erb-beautify.keepBlankLines": 1,
|
|
"inlineFold.regex": "(class=|className=|class:\\s*)(({(`|))|(['\"`]))(.*?)(\\2|(\\4)})", // inline AlpineJs `class: `
|
|
"debug.internalConsoleOptions": "neverOpen",
|
|
"testExplorer.addToEditorContextMenu": true,
|
|
// -----------------256-color ANSI SUPPORT ----------------
|
|
"workbench.colorTheme": "Default Dark Modern",
|
|
"terminal.integrated.minimumContrastRatio": 1,
|
|
"terminal.integrated.drawBoldTextInBrightColors": false,
|
|
"workbench.colorCustomizations": {
|
|
"terminal.background": "#1f1f1f"
|
|
// "terminal.foreground" : "#EEEEEE",
|
|
},
|
|
// ---------------------------------------------------------
|
|
"terminal.integrated.shellIntegration.enabled": false,
|
|
"editor.formatOnSave": true,
|
|
"editor.tabSize": 2, // Use 2 spaces for indentation
|
|
"editor.insertSpaces": true, // Use spaces and not tabs for indentantion
|
|
}
|