LazyVim.LazyVim/lua/lazyvim/plugins/extras/lang/thrift.lua

24 lines
405 B
Lua
Raw Normal View History

return {
recommended = {
ft = "thrift",
root = ".thrift",
},
{
"nvim-treesitter",
optional = true,
opts = function(_, opts)
opts.ensure_installed = opts.ensure_installed or {}
vim.list_extend(opts.ensure_installed, { "thrift" })
end,
},
{
"nvim-lspconfig",
optional = true,
opts = {
servers = {
thriftls = {},
},
},
},
}