23 lines
431 B
Nix
23 lines
431 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# TODO use tree-sitter grammars from nixpkgs
|
|
programs.helix = {
|
|
enable = true;
|
|
package = pkgs.unstable.helix;
|
|
settings = {
|
|
theme = "dark_plus";
|
|
keys = {
|
|
normal = {
|
|
"H" = "goto_line_start";
|
|
"L" = "goto_line_end";
|
|
};
|
|
select = {
|
|
"H" = "goto_line_start";
|
|
"L" = "goto_line_end";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|