mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
13 lines
293 B
Lua
13 lines
293 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/JCWasmx86/Swift-MesonLSP
|
|
---
|
|
--- Meson language server written in Swift
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'Swift-MesonLSP', '--lsp' },
|
|
filetypes = { 'meson' },
|
|
root_markers = { 'meson.build', 'meson_options.txt', 'meson.options', '.git' },
|
|
}
|