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" "impl"
"proselint" "proselint"
"refactoring" "refactoring"
"regal"
"statix" "statix"
"ts_node_action" "ts_node_action"
]; ];
@ -88,6 +89,7 @@
"swiftlint" "swiftlint"
"teal" "teal"
"terraform_validate" "terraform_validate"
"terragrunt_validate"
"textidote" "textidote"
"textlint" "textlint"
"tfsec" "tfsec"
@ -215,6 +217,7 @@
"swiftformat" "swiftformat"
"swiftlint" "swiftlint"
"terraform_fmt" "terraform_fmt"
"terragrunt_fmt"
"textlint" "textlint"
"tidy" "tidy"
"topiary" "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" = { "rust-analyzer.inlayHints.bindingModeHints.enable" = {
description = '' description = ''
Whether to show inlay type hints for binding modes. 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" = { "rust-analyzer.inlayHints.implicitDrops.enable" = {
description = '' description = ''
Whether to show implicit drop hints. Whether to show implicit drop hints.

View file

@ -171,6 +171,8 @@ pkgs: {
teal = pkgs.luaPackages.tl; teal = pkgs.luaPackages.tl;
terraform_fmt = pkgs.terraform; terraform_fmt = pkgs.terraform;
terraform_validate = pkgs.terraform; terraform_validate = pkgs.terraform;
terragrunt_fmt = pkgs.terragrunt;
terragrunt_validate = pkgs.terragrunt;
tidy = pkgs.html-tidy; tidy = pkgs.html-tidy;
treefmt = pkgs.treefmt2; treefmt = pkgs.treefmt2;
verible_verilog_format = pkgs.verible; verible_verilog_format = pkgs.verible;