SoloVim/lua/plugins/crates.lua
Kristofers Solo f5c52bcc9d
Update 2025-10-31
update 2025-10-08

chore: update readme

Update 2025-10-09

Update 2025-10-15

Update 2025-10-22

Update 2025-10-31
2025-10-31 11:59:53 +02:00

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 = " ",
},
}