generated: Update

- Updated none-ls.nix
- Updated rust-analyzer.nix
This commit is contained in:
Gaetan Lepage 2024-07-30 22:02:28 +02:00
parent 3cd3913d45
commit 1e761b11bc
3 changed files with 41 additions and 0 deletions

View file

@ -8,6 +8,7 @@
"impl"
"proselint"
"refactoring"
"regal"
"statix"
"ts_node_action"
];
@ -88,6 +89,7 @@
"swiftlint"
"teal"
"terraform_validate"
"terragrunt_validate"
"textidote"
"textlint"
"tfsec"
@ -215,6 +217,7 @@
"swiftformat"
"swiftlint"
"terraform_fmt"
"terragrunt_fmt"
"textlint"
"tidy"
"topiary"

View file

@ -1154,6 +1154,15 @@
];
};
};
"rust-analyzer.imports.prefixExternPrelude" = {
description = ''
Whether to prefix external (including std, core) crate imports with `::`. e.g. "use ::std::io::Read;".
'';
pluginDefault = false;
type = {
kind = "boolean";
};
};
"rust-analyzer.inlayHints.bindingModeHints.enable" = {
description = ''
Whether to show inlay type hints for binding modes.
@ -1310,6 +1319,33 @@
];
};
};
"rust-analyzer.inlayHints.genericParameterHints.const.enable" = {
description = ''
Whether to show const generic parameter name inlay hints.
'';
pluginDefault = false;
type = {
kind = "boolean";
};
};
"rust-analyzer.inlayHints.genericParameterHints.lifetime.enable" = {
description = ''
Whether to show generic lifetime parameter name inlay hints.
'';
pluginDefault = true;
type = {
kind = "boolean";
};
};
"rust-analyzer.inlayHints.genericParameterHints.type.enable" = {
description = ''
Whether to show generic type parameter name inlay hints.
'';
pluginDefault = false;
type = {
kind = "boolean";
};
};
"rust-analyzer.inlayHints.implicitDrops.enable" = {
description = ''
Whether to show implicit drop hints.