This repository has been archived on 2026-01-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2026-01-12 22:00:09 +01:00

25 lines
481 B
Nix

{ 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";
};
};
};
}