summaryrefslogtreecommitdiff
path: root/start/lspconfig-0.1.8/lua/lspconfig/server_configurations/unocss.lua
blob: 4b15513b365158e2a6a23412a71df17963d6ff04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
local util = require 'lspconfig.util'

return {
  default_config = {
    cmd = { 'unocss-language-server', '--stdio' },
    filetypes = {
      'html',
      'javascriptreact',
      'rescript',
      'typescriptreact',
      'vue',
      'svelte',
    },
    root_dir = function(fname)
      return util.root_pattern('unocss.config.js', 'unocss.config.ts', 'uno.config.js', 'uno.config.ts')(fname)
    end,
  },
  docs = {
    description = [[
https://github.com/xna00/unocss-language-server

UnoCSS Language Server can be installed via npm:
```sh
npm i unocss-language-server -g
```
]],
    default_config = {
      root_dir = [[root_pattern('unocss.config.js', 'unocss.config.ts', 'uno.config.js', 'uno.config.ts')]],
    },
  },
}