config/homes/common/helix.nix
2024-09-29 16:42:01 +01:00

14 lines
214 B
Nix

{
programs.helix = {
enable = true;
settings = {
theme = "onedark";
keys.normal = {
space.space = "file_picker";
space.w = ":w";
space.q = ":q";
};
};
};
}