Stats
Actions
Tags
From html-css-lsp
VSCode CSS Language Server provides code intelligence for CSS, Less, and SCSS — diagnostics, go-to-definition, find references, hover info for .css, .less, .scss files.
This LSP server requires vscode-css-language-serverto be installed on your system. Make sure it's available in your PATH before enabling.
Copy this JSON into your .lsp.json to enable this server
Add to your .lsp.json or plugin.json:
{
"lspServers": {
"css": {
"command": "vscode-css-language-server",
"extensionToLanguage": {
".css": "css",
".less": "less",
".scss": "scss"
},
"args": [
"--stdio"
]
}
}
}File extensions mapped to language identifiers
Server configuration and transport parameters
vscode-css-language-serverstdioCommand-line arguments passed to the server process
Initialization options and workspace settings
Initialization Options:
{}Settings:
{}npx claudepluginhub zircote/lsp-marketplace --plugin html-css-lsp