diff options
| author | Keith Cirkel <keithamus@users.noreply.github.com> | 2026-04-08 16:44:02 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-08 11:44:02 -0400 |
| commit | 76e616c9ab71c897691d1eeba66517a8005b2d10 (patch) | |
| tree | 94beeb1c70f5fa694465501e47c0f420eac18c3e /lsp/csskit.lua | |
| parent | ci: bump JohnnyMorganz/stylua-action from 4 to 5 (#4378) (diff) | |
| download | nvim-lspconfig-76e616c9ab71c897691d1eeba66517a8005b2d10.tar nvim-lspconfig-76e616c9ab71c897691d1eeba66517a8005b2d10.tar.gz nvim-lspconfig-76e616c9ab71c897691d1eeba66517a8005b2d10.tar.bz2 nvim-lspconfig-76e616c9ab71c897691d1eeba66517a8005b2d10.tar.lz nvim-lspconfig-76e616c9ab71c897691d1eeba66517a8005b2d10.tar.xz nvim-lspconfig-76e616c9ab71c897691d1eeba66517a8005b2d10.tar.zst nvim-lspconfig-76e616c9ab71c897691d1eeba66517a8005b2d10.zip | |
feat: csskit #4380
Diffstat (limited to 'lsp/csskit.lua')
| -rw-r--r-- | lsp/csskit.lua | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lsp/csskit.lua b/lsp/csskit.lua new file mode 100644 index 00000000..c2218536 --- /dev/null +++ b/lsp/csskit.lua @@ -0,0 +1,18 @@ +---@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' }, +} |
