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:
parent
154da6736d
commit
08658d4c42
1 changed files with 5 additions and 2 deletions
|
@ -48,7 +48,7 @@
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
auto-signature-help = true;
|
auto-signature-help = true;
|
||||||
display-inlay-hints = true;
|
display-inlay-hints = false;
|
||||||
display-messages = true;
|
display-messages = true;
|
||||||
snippets = true;
|
snippets = true;
|
||||||
};
|
};
|
||||||
|
@ -78,7 +78,10 @@
|
||||||
};
|
};
|
||||||
keys = {
|
keys = {
|
||||||
normal = {
|
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"];
|
esc = ["collapse_selection" "keep_primary_selection" "normal_mode"];
|
||||||
A-H = "goto_previous_buffer";
|
A-H = "goto_previous_buffer";
|
||||||
A-L = "goto_next_buffer";
|
A-L = "goto_next_buffer";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue