nix/home/helix/default.nix
2024-08-05 20:37:10 +02:00

19 lines
271 B
Nix

{ pkgs, ... }:
{
programs.helix = {
enable = true;
defaultEditor = true;
settings = {
keys.normal = {
space.space = "file_picker";
Z.Z = ":wq";
Z.Q = ":q!";
};
};
};
home.packages = with pkgs; [
nil
];
}