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

16 lines
243 B
Nix
Raw Normal View History

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