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

Add indent guides and D to select until the end of the line to Helix

This commit is contained in:
RGBCube 2023-11-08 15:14:41 +03:00
parent a5841ab9ff
commit 46d2b282ee
No known key found for this signature in database

View file

@ -12,18 +12,13 @@
cursorline = true; cursorline = true;
file-picker.hidden = false; file-picker.hidden = false;
line-number = "relative"; line-number = "relative";
shell = [ "nu" "-c" ]; shell = [ "nu" "--commands" ];
text-width = 100; text-width = 100;
}; };
settings.editor.auto-pairs = { settings.editor.indent-guides = {
"(" = ")"; character = "";
"{" = "}"; render = true;
"[" = "]";
"\"" = "\"";
"'" = "'";
"<" = ">";
"`" = "`";
}; };
settings.editor.statusline.mode = { settings.editor.statusline.mode = {
@ -36,6 +31,8 @@
render.tab = "all"; render.tab = "all";
characters.tab = ""; characters.tab = "";
}; };
settings.keys.normal.D = "extend_to_line_end";
}; };
}) })