mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2026-05-05 08:36:09 +02: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' },
|
|
}
|