File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ Nvim by running `:help lspconfig-all`.
6363- [csharp_ls](#csharp_ls)
6464- [cspell_ls](#cspell_ls)
6565- [css_variables](#css_variables)
66+ - [csskit](#csskit)
6667- [cssls](#cssls)
6768- [cssmodules_ls](#cssmodules_ls)
6869- [cucumber_language_server](#cucumber_language_server)
@@ -2649,6 +2650,39 @@ Default config:
26492650
26502651---
26512652
2653+ ## csskit
2654+
2655+ https://github.com/csskit/csskit
2656+
2657+ Beautiful, fast, and powerful CSS tooling with zero configuration
2658+
2659+ `csskit` can be installed via `npm`:
2660+
2661+ ```sh
2662+ npm i -g csskit
2663+ ```
2664+
2665+ Snippet to enable the language server:
2666+ ```lua
2667+ vim.lsp.enable('csskit')
2668+ ```
2669+
2670+ Default config:
2671+ - `cmd` :
2672+ ```lua
2673+ { "csskit", "lsp" }
2674+ ```
2675+ - `filetypes` :
2676+ ```lua
2677+ { "css" }
2678+ ```
2679+ - `root_markers` :
2680+ ```lua
2681+ { "package.json", ".git" }
2682+ ```
2683+
2684+ ---
2685+
26522686## cssls
26532687
26542688https://github.com/hrsh7th/vscode-langservers-extracted
Original file line number Diff line number Diff line change @@ -1755,6 +1755,30 @@ Default config:
17551755 }
17561756<
17571757
1758+ ------------------------------------------------------------------------------
1759+ csskit
1760+
1761+ https://github.com/csskit/csskit
1762+
1763+ Beautiful, fast, and powerful CSS tooling with zero configuration
1764+
1765+ `csskit` can be installed via `npm` :
1766+ >sh
1767+ npm i -g csskit
1768+
1769+ Snippet to enable the language server: >lua
1770+ vim.lsp.enable('csskit' )
1771+
1772+
1773+ Default config:
1774+ - cmd: >lua
1775+ { "csskit", "lsp" }
1776+ - filetypes: >lua
1777+ { "css" }
1778+ - root_markers: >lua
1779+ { "package.json", ".git" }
1780+ <
1781+
17581782------------------------------------------------------------------------------
17591783cssls
17601784
You can’t perform that action at this time.
0 commit comments