nix/home/helix/default.nix

17 lines
299 B
Nix
Raw Normal View History

2024-08-05 13:18:53 +02:00
{ lib, ... }:
2024-07-16 20:21:51 +02:00
{
programs.helix = {
enable = true;
2024-07-16 20:59:37 +02:00
defaultEditor = true;
2024-08-05 13:18:53 +02:00
# themes = lib.mkForce "gruvbox";
2024-07-16 20:59:37 +02:00
settings = {
# lsp.display-messages = true;
keys.normal = {
space.space = "file_picker";
2024-07-17 23:02:23 +02:00
Z.Z = ":wq";
2024-07-18 14:45:17 +02:00
Z.Q = ":q!";
2024-07-16 20:59:37 +02:00
};
};
2024-07-16 20:21:51 +02:00
};
}