helix: do not display display hints automatically

Display hints can be annoying, hence I toggle them using
<space>-i instead.
This commit is contained in:
Bloxx12 2025-05-06 21:53:37 +02:00
commit 08658d4c42
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E

View file

@ -48,7 +48,7 @@
lsp = {
enable = true;
auto-signature-help = true;
display-inlay-hints = true;
display-inlay-hints = false;
display-messages = true;
snippets = true;
};
@ -78,7 +78,10 @@
};
keys = {
normal = {
space.g = [":new" ":insert-output XDG_CONFIG_HOME=~/.config ${getExe lazygit}" ":buffer-close!" ":redraw"];
space = {
g = [":new" ":insert-output XDG_CONFIG_HOME=~/.config ${getExe lazygit}" ":buffer-close!" ":redraw"];
i = ":toggle lsp.display-inlay-hints";
};
esc = ["collapse_selection" "keep_primary_selection" "normal_mode"];
A-H = "goto_previous_buffer";
A-L = "goto_next_buffer";