20 lines
318 B
Lua
20 lines
318 B
Lua
return {
|
|
"saecki/crates.nvim",
|
|
event = { "BufRead Cargo.toml" },
|
|
opts = {
|
|
lsp = {
|
|
enabled = true,
|
|
actions = true,
|
|
completion = true,
|
|
hover = true,
|
|
},
|
|
completion = {
|
|
crates = {
|
|
enabled = true,
|
|
max_results = 10,
|
|
min_chars = 3,
|
|
},
|
|
}
|
|
}
|
|
}
|