Skip to content

Conversation

@azeier
Copy link
Contributor

@azeier azeier commented Oct 20, 2025

This allows for user-level lsp configuration via zed/settings.json.

I have personally just disabled scss-lsp entirely, but this provides an additional workaround for #23 while keeping both enabled via

"lsp": {
  "some-sass-lsp": {
    "settings": {
      "somesass": {
        "scss": {
          "completion": {
            "enabled": false
          }
        }
      }
    }
  },
  "scss-lsp": {
    "settings": {
      "scss": {
        "hover": {
          "documentation": false,
          "references": false
        }
      }
    }
  }
},

(It seems that it's not possible to disable scss-lsp completion)


In action with the above and some-sass colors enabled:

image

Full some-sass configuration options can be found here: https://wkillerud.github.io/some-sass/user-guide/settings.html#scss
Full scss-lsp configuration options can be found here: https://code.visualstudio.com/docs/languages/css#_customizing-css-scss-and-less-settings

This allows for user level configuration via zed/settings.json:
```
"lsp": {
  "some-sass-lsp": {
    "settings": {
      ...
    }
  },
  "scss-lsp": {
    "settings": {
      ...
    }
  }
}
```
@bajrangCoder bajrangCoder self-assigned this Oct 21, 2025
@bajrangCoder bajrangCoder merged commit eeae383 into bajrangCoder:main Oct 21, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants