This repository has been archived on 2026-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
|
return {
|
|
"mrcjkb/rustaceanvim",
|
|
version = "^5", -- Recommended
|
|
lazy = false, -- This plugin is already lazy
|
|
["rust-analyzer"] = {
|
|
cargo = {
|
|
allFeatures = true,
|
|
},
|
|
},
|
|
config = function()
|
|
vim.g.rustaceanvim = {
|
|
tools = {
|
|
float_win_config = {
|
|
border = "rounded",
|
|
},
|
|
},
|
|
}
|
|
end,
|
|
}
|