18 lines
339 B
Lua
18 lines
339 B
Lua
|
return {
|
||
|
"Saecki/crates.nvim",
|
||
|
event = { "BufRead Cargo.toml" },
|
||
|
opts = {
|
||
|
completion = {
|
||
|
crates = {
|
||
|
enabled = true,
|
||
|
},
|
||
|
},
|
||
|
lsp = {
|
||
|
enabled = true,
|
||
|
actions = true,
|
||
|
completion = true,
|
||
|
hover = true,
|
||
|
},
|
||
|
},
|
||
|
}
|