20 lines
445 B
Lua
20 lines
445 B
Lua
return {
|
|
"mrcjkb/rustaceanvim",
|
|
opts = {
|
|
server = {
|
|
default_settings = {
|
|
["rust-analyzer"] = {
|
|
procMacro = {
|
|
enable = true,
|
|
ignored = {
|
|
-- We use async-trait which is commonly ignored, so we need to enable it.
|
|
["napi-derive"] = { "napi" },
|
|
["async-recursion"] = { "async_recursion" },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|