# HG changeset patch # User Zeger Van de Vannet # Date 1747660458 -7200 # Node ID 226a6d4a1f3062e6340886ac1bb354f9a0c1b8a6 # Parent dfa9d2a82c929602af28d061b51f50d20aef3485 feat: enable inlay hints diff -r dfa9d2a82c92 -r 226a6d4a1f30 dot_config/helix/config.toml.tmpl --- a/dot_config/helix/config.toml.tmpl Sun May 18 20:05:51 2025 +0200 +++ b/dot_config/helix/config.toml.tmpl Mon May 19 15:14:18 2025 +0200 @@ -10,6 +10,7 @@ auto-save = true true-color = true clipboard-provider = "termcode" +lsp.display-inlay-hints = true [editor.cursor-shape] insert = "bar" diff -r dfa9d2a82c92 -r 226a6d4a1f30 dot_config/helix/themes/tutticolori.toml --- a/dot_config/helix/themes/tutticolori.toml Sun May 18 20:05:51 2025 +0200 +++ b/dot_config/helix/themes/tutticolori.toml Mon May 19 15:14:18 2025 +0200 @@ -17,6 +17,9 @@ "ui.help" = { fg = "black", bg = "ice-light" } "ui.virtual.whitespace" = { fg = "gray" } "ui.virtual.jump-label" = { bg = "green-light", fg = "black", modifiers=["bold"]} +"ui.virtual.inlay-hint" = { fg = "gray", modifiers = ["italic"] } +"ui.virtual.inlay-hint.parameter" = { fg = "cyan", modifiers = ["italic"] } +"ui.virtual.inlay-hint.type" = { fg = "red", modifiers = ["italic"]} "diagnostic.error" = { underline = { color = "error-red", style = "curl" } } "diagnostic.warning" = { underline = { color = "orange", style = "curl"} }