nixos-config/config/programs/helix/default.nix

33 lines
525 B
Nix
Raw Normal View History

2022-12-13 13:37:44 +00:00
desktop: {
2022-09-21 19:38:51 +00:00
system,
pkgs,
...
}: {
2022-12-13 13:37:44 +00:00
imports =
if desktop
then [
./languages.nix
]
else [];
2022-09-22 11:37:02 +00:00
home.packages = [
pkgs.wl-clipboard
pkgs.xsel
];
2022-09-21 19:38:51 +00:00
programs.helix = {
enable = true;
settings = {
2022-09-22 10:45:56 +00:00
editor = {
2022-09-22 10:43:52 +00:00
line-number = "relative";
2023-01-01 13:28:25 +00:00
cursorline = true;
color-modes = true;
cursor-shape = {
insert = "bar";
normal = "block";
select = "underline";
};
indent-guides.render = true;
2022-09-21 19:38:51 +00:00
};
};
};
}