1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 11:07:44 +00:00

Enable Helix inline diagnostics

This commit is contained in:
RGBCube 2025-01-12 16:39:24 +03:00
parent 06cce18e72
commit 27656a2193

View file

@ -115,17 +115,18 @@ in {
settings.theme = "gruvbox_dark_hard";
settings.editor = {
color-modes = true;
completion-replace = true;
completion-trigger-len = 0;
cursor-shape.insert = "bar";
cursorline = true;
bufferline = "multiple";
file-picker.hidden = false;
idle-timeout = 0;
line-number = "relative";
shell = [ "bash" "-c" ];
text-width = 100;
bufferline = "multiple";
color-modes = true;
completion-replace = true;
completion-trigger-len = 0;
cursor-shape.insert = "bar";
cursorline = true;
end-of-line-diagnostics = "hint";
file-picker.hidden = false;
idle-timeout = 0;
line-number = "relative";
shell = [ "bash" "-c" ];
text-width = 100;
};
settings.editor.indent-guides = {
@ -133,6 +134,11 @@ in {
render = true;
};
settings.editor.inline-diagnostics = {
cursor-line = "hint";
other-lines = "hint";
};
settings.editor.statusline.mode = {
insert = "INSERT";
normal = "NORMAL";