23 lines
439 B
Lua
23 lines
439 B
Lua
return {
|
|
"saecki/crates.nvim",
|
|
tag = "stable",
|
|
event = { "BufRead Cargo.toml" },
|
|
config = function()
|
|
require("crates").setup{
|
|
lsp = {
|
|
enabled = true,
|
|
actions = true,
|
|
completion = true,
|
|
hover = true,
|
|
},
|
|
completion = {
|
|
crates = {
|
|
enabled = true,
|
|
max_results = 10,
|
|
min_chars = 3,
|
|
},
|
|
}
|
|
}
|
|
end,
|
|
}
|