nix/home/helix/default.nix

16 lines
255 B
Nix
Raw Normal View History

2024-07-16 20:21:51 +02:00
{ ... }:
{
programs.helix = {
enable = true;
2024-07-16 20:59:37 +02:00
defaultEditor = true;
settings = {
# lsp.display-messages = true;
keys.normal = {
space.space = "file_picker";
2024-07-17 23:02:23 +02:00
Z.Z = ":wq";
Z.Q = ":q";
2024-07-16 20:59:37 +02:00
};
};
2024-07-16 20:21:51 +02:00
};
}