This commit is contained in:
2026-01-12 22:00:09 +01:00
commit c33f6abe21
21 changed files with 588 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{ pkgs, ... }:
{
programs.helix = {
enable = true;
defaultEditor = true;
settings = {
theme = "transparent";
editor = {
line-number = "relative";
bufferline = "multiple";
cursor-shape = {
insert = "bar";
normal = "block";
select = "underline";
};
statusline.left = ["mode" "spinner" "file-name"];
};
keys.normal = {
X = "extend_line_above";
};
};
};
}