nix/hosts/phone/home/helix/default.nix
2024-09-28 12:06:19 +02:00

15 lines
241 B
Nix

{...}: {
programs.helix = {
enable = true;
defaultEditor = true;
settings = {
theme = "gruvbox";
keys.normal = {
space.space = "file_picker";
Z.Z = ":wq";
Z.Q = ":q!";
};
};
};
}