mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-22 08:53:33 +02:00
24 lines
405 B
Lua
24 lines
405 B
Lua
|
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 = {},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|