mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2026-05-05 08:36:09 +02:00
19 lines
347 B
Lua
19 lines
347 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/csskit/csskit
|
|
---
|
|
--- Beautiful, fast, and powerful CSS tooling with zero configuration
|
|
---
|
|
--- `csskit` can be installed via `npm`:
|
|
---
|
|
--- ```sh
|
|
--- npm i -g csskit
|
|
--- ```
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'csskit', 'lsp' },
|
|
filetypes = { 'css' },
|
|
root_markers = { 'package.json', '.git' },
|
|
}
|