1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 15:50:03 +08:00
SpaceVim/bundle/nvim-lspconfig-0.1.4/lua/lspconfig/server_configurations/smarty_ls.lua

47 lines
958 B
Lua
Raw Normal View History

2023-03-29 11:59:27 +08:00
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
```
]],
},
}