config/homes/common/helix.nix

14 lines
214 B
Nix
Raw Permalink Normal View History

2024-09-15 12:56:25 +01:00
{
programs.helix = {
enable = true;
settings = {
theme = "onedark";
keys.normal = {
space.space = "file_picker";
space.w = ":w";
space.q = ":q";
};
};
};
}