mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-22 00:49:03 +02:00
19 lines
277 B
Lua
19 lines
277 B
Lua
return {
|
|
recommended = {
|
|
ft = "thrift",
|
|
root = ".thrift",
|
|
},
|
|
{
|
|
"nvim-treesitter",
|
|
opts = { ensure_installed = { "thrift" } },
|
|
},
|
|
{
|
|
"nvim-lspconfig",
|
|
optional = true,
|
|
opts = {
|
|
servers = {
|
|
thriftls = {},
|
|
},
|
|
},
|
|
},
|
|
}
|