Files
LazyVim/lua/lazyvim/plugins/extras/lang/thrift.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 = {},
},
},
},
}