nix/modules/programs/helix/default.nix

29 lines
481 B
Nix
Raw Normal View History

2024-09-08 17:04:51 +02:00
{
2024-09-14 21:25:34 +02:00
pkgs,
2024-09-08 17:04:51 +02:00
lib,
...
}: {
2024-10-04 22:32:42 +02:00
programs.helix = {
2024-08-31 16:04:57 +02:00
enable = true;
defaultEditor = true;
settings = {
2024-09-02 19:17:56 +02:00
theme = lib.mkForce "gruvbox";
2024-09-21 09:44:32 +02:00
editor = {
line-number = "relative";
shell = ["zsh" "-c"];
};
2024-08-31 16:04:57 +02:00
keys.normal = {
Z.Z = ":wq";
Z.Q = ":q!";
2024-09-21 09:44:32 +02:00
space.space = "file_picker";
2024-09-21 09:45:11 +02:00
esc = ["collapse_selection" "keep_primary_selection"];
2024-08-31 16:04:57 +02:00
};
};
};
2024-10-04 22:32:42 +02:00
home.packages = with pkgs; [
2024-08-31 16:04:57 +02:00
nil
2024-10-17 20:30:14 +02:00
pandoc
2024-08-31 16:04:57 +02:00
];
}