mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
generated: Update
- Updated none-ls.nix - Updated rust-analyzer.nix
This commit is contained in:
parent
3cd3913d45
commit
1e761b11bc
3 changed files with 41 additions and 0 deletions
|
@ -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"
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -171,6 +171,8 @@ pkgs: {
|
|||
teal = pkgs.luaPackages.tl;
|
||||
terraform_fmt = pkgs.terraform;
|
||||
terraform_validate = pkgs.terraform;
|
||||
terragrunt_fmt = pkgs.terragrunt;
|
||||
terragrunt_validate = pkgs.terragrunt;
|
||||
tidy = pkgs.html-tidy;
|
||||
treefmt = pkgs.treefmt2;
|
||||
verible_verilog_format = pkgs.verible;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue