From c0c4edd4abf935a24eff1bc915e12a5c30a4c388 Mon Sep 17 00:00:00 2001 From: Jeremy Kaplan Date: Tue, 4 Aug 2026 13:09:47 -0400 Subject: [PATCH] helix: Configure inlay hints --- helix/config.toml | 1 + helix/languages.toml | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/helix/config.toml b/helix/config.toml index 3e3fe59..b88ee24 100644 --- a/helix/config.toml +++ b/helix/config.toml @@ -35,6 +35,7 @@ line-numbers = { min-width = 1 } [editor.lsp] display-inlay-hints = true +inlay-hints-length-limit = 10 [editor.soft-wrap] enable = true diff --git a/helix/languages.toml b/helix/languages.toml index 8b73109..b1cf72a 100644 --- a/helix/languages.toml +++ b/helix/languages.toml @@ -14,6 +14,10 @@ rangeVariableTypes = false [language-server.rust-analyzer.config.check] command = "clippy" +[language-server.rust-analyzer.config.inlayHints] +bindingModeHints.enable = true +parameterHints.enable = false + [language-server.superhtml] args = ["lsp", "--syntax-only"]