From 1e761b11bc406b109a7f89abc5d544129dd30af0 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Tue, 30 Jul 2024 22:02:28 +0200 Subject: [PATCH] generated: Update - Updated none-ls.nix - Updated rust-analyzer.nix --- generated/none-ls.nix | 3 +++ generated/rust-analyzer.nix | 36 ++++++++++++++++++++++++++++++++++++ plugins/none-ls/packages.nix | 2 ++ 3 files changed, 41 insertions(+) diff --git a/generated/none-ls.nix b/generated/none-ls.nix index bf87aa04..b4a8b9a7 100644 --- a/generated/none-ls.nix +++ b/generated/none-ls.nix @@ -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" diff --git a/generated/rust-analyzer.nix b/generated/rust-analyzer.nix index d4cc6c7a..e9322bbf 100644 --- a/generated/rust-analyzer.nix +++ b/generated/rust-analyzer.nix @@ -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. diff --git a/plugins/none-ls/packages.nix b/plugins/none-ls/packages.nix index 91e04e6e..d6593b11 100644 --- a/plugins/none-ls/packages.nix +++ b/plugins/none-ls/packages.nix @@ -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;