nix/hosts/phone/home/helix/default.nix

15 lines
241 B
Nix
Raw Normal View History

2024-09-28 12:06:19 +02:00
{...}: {
2024-09-22 13:42:52 +02:00
programs.helix = {
enable = true;
defaultEditor = true;
settings = {
2024-09-28 12:06:19 +02:00
theme = "gruvbox";
2024-09-22 13:42:52 +02:00
keys.normal = {
space.space = "file_picker";
2024-09-28 12:06:19 +02:00
Z.Z = ":wq";
Z.Q = ":q!";
2024-09-22 13:42:52 +02:00
};
};
};
}