mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-10-21 20:10:41 +00:00
23 lines
357 B
Lua
23 lines
357 B
Lua
return {
|
|
"Saecki/crates.nvim",
|
|
tag = "stable",
|
|
event = { "BufRead Cargo.toml" },
|
|
keys = {
|
|
{
|
|
"<leader>ru",
|
|
require("crates").upgrade_all_crates,
|
|
desc = "Upgrade all crates",
|
|
ft = { "rust", "toml" },
|
|
},
|
|
},
|
|
opts = {
|
|
completion = {
|
|
cmp = {
|
|
enabled = true,
|
|
},
|
|
},
|
|
date_format = "%d-%m-%Y",
|
|
thousands_separator = " ",
|
|
},
|
|
}
|