mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 12:50:03 +08:00
20 lines
433 B
Lua
20 lines
433 B
Lua
local util = require 'lspconfig.util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'Swift-MesonLSP', '--lsp' },
|
|
filetypes = { 'meson' },
|
|
root_dir = util.root_pattern('meson_options.txt', '.git'),
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://github.com/JCWasmx86/Swift-MesonLSP
|
|
|
|
Meson language server written in Swift
|
|
]],
|
|
default_config = {
|
|
root_dir = [[util.root_pattern("meson_options.txt", ".git")]],
|
|
},
|
|
},
|
|
}
|