plugins.rustaceanvim.settings
Options provided to the require('rustaceanvim').setup
function.
Type: attribute set of anything
Default:
{ }
Example:
{
server = {
cmd = [
"rustup"
"run"
"nightly"
"rust-analyzer"
];
default_settings = {
rust-analyzer = {
check = {
command = "clippy";
};
inlayHints = {
lifetimeElisionHints = {
enable = "always";
};
};
};
};
standalone = false;
};
}
Declared by: