mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:30:04 +08:00
30 lines
701 B
Lua
30 lines
701 B
Lua
local configs = require 'lspconfig/configs'
|
|
local util = require 'lspconfig/util'
|
|
|
|
local server_name = 'svelte'
|
|
local bin_name = 'svelteserver'
|
|
if vim.fn.has 'win32' == 1 then
|
|
bin_name = bin_name .. '.cmd'
|
|
end
|
|
|
|
configs[server_name] = {
|
|
default_config = {
|
|
cmd = { bin_name, '--stdio' },
|
|
filetypes = { 'svelte' },
|
|
root_dir = util.root_pattern('package.json', '.git'),
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://github.com/sveltejs/language-tools/tree/master/packages/language-server
|
|
|
|
`svelte-language-server` can be installed via `npm`:
|
|
```sh
|
|
npm install -g svelte-language-server
|
|
```
|
|
]],
|
|
default_config = {
|
|
root_dir = [[root_pattern("package.json", ".git")]],
|
|
},
|
|
},
|
|
}
|