mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
13 lines
290 B
Lua
13 lines
290 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/joyme123/thrift-ls
|
|
---
|
|
--- you can install thriftls by mason or download binary here: https://github.com/joyme123/thrift-ls/releases
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'thriftls' },
|
|
filetypes = { 'thrift' },
|
|
root_markers = { '.thrift' },
|
|
}
|