mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 13:40:05 +08:00
47 lines
958 B
Lua
Vendored
47 lines
958 B
Lua
Vendored
local util = require 'lspconfig.util'
|
|
|
|
local bin_name = 'smarty-language-server'
|
|
local cmd = { bin_name, '--stdio' }
|
|
|
|
if vim.fn.has 'win32' == 1 then
|
|
cmd = { 'cmd.exe', '/C', bin_name, '--stdio' }
|
|
end
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = cmd,
|
|
filetypes = { 'smarty' },
|
|
root_dir = function(pattern)
|
|
local cwd = vim.loop.cwd()
|
|
local root = util.root_pattern('composer.json', '.git')(pattern)
|
|
|
|
-- prefer cwd if root is a descendant
|
|
return util.path.is_descendant(cwd, root) and cwd or root
|
|
end,
|
|
settings = {
|
|
smarty = {
|
|
pluginDirs = {},
|
|
},
|
|
css = {
|
|
validate = true,
|
|
},
|
|
},
|
|
init_options = {
|
|
storageDir = nil,
|
|
},
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://github.com/landeaux/vscode-smarty-langserver-extracted
|
|
|
|
Language server for Smarty.
|
|
|
|
`smarty-language-server` can be installed via `npm`:
|
|
|
|
```sh
|
|
npm i -g vscode-smarty-langserver-extracted
|
|
```
|
|
]],
|
|
},
|
|
}
|