20 lines
277 B
Lua
20 lines
277 B
Lua
return {
|
|
recommended = {
|
|
ft = "thrift",
|
|
root = ".thrift",
|
|
},
|
|
{
|
|
"nvim-treesitter",
|
|
opts = { ensure_installed = { "thrift" } },
|
|
},
|
|
{
|
|
"nvim-lspconfig",
|
|
optional = true,
|
|
opts = {
|
|
servers = {
|
|
thriftls = {},
|
|
},
|
|
},
|
|
},
|
|
}
|