mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01:00
35 lines
1.1 KiB
Lua
35 lines
1.1 KiB
Lua
---@brief
|
|
---
|
|
--- https://github.com/hrsh7th/vscode-langservers-extracted
|
|
---
|
|
--- `css-languageserver` can be installed via `npm`:
|
|
---
|
|
--- ```sh
|
|
--- npm i -g vscode-langservers-extracted
|
|
--- ```
|
|
---
|
|
--- Neovim does not currently include built-in snippets. `vscode-css-language-server` only provides completions when snippet support is enabled. To enable completion, install a snippet plugin and add the following override to your language client capabilities during setup.
|
|
---
|
|
--- ```lua
|
|
--- --Enable (broadcasting) snippet capability for completion
|
|
--- local capabilities = vim.lsp.protocol.make_client_capabilities()
|
|
--- capabilities.textDocument.completion.completionItem.snippetSupport = true
|
|
---
|
|
--- vim.lsp.config('cssls', {
|
|
--- capabilities = capabilities,
|
|
--- })
|
|
--- ```
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'vscode-css-language-server', '--stdio' },
|
|
filetypes = { 'css', 'scss', 'less' },
|
|
init_options = { provideFormatter = true }, -- needed to enable formatting capabilities
|
|
root_markers = { 'package.json', '.git' },
|
|
settings = {
|
|
css = { validate = true },
|
|
scss = { validate = true },
|
|
less = { validate = true },
|
|
},
|
|
}
|