feat(helix): switch to unstable & add settings

This commit is contained in:
Felix Schröter 2023-04-09 21:33:23 +02:00
parent d3220874f4
commit 75fa9b8dc7
Signed by: felschr
GPG key ID: 671E39E6744C807D

View file

@ -4,7 +4,19 @@
# TODO use tree-sitter grammars from nixpkgs # TODO use tree-sitter grammars from nixpkgs
programs.helix = { programs.helix = {
enable = true; enable = true;
languages = [ ]; package = pkgs.unstable.helix;
settings = { theme = "base16_default_dark"; }; settings = {
theme = "dark_plus";
keys = {
normal = {
"H" = "goto_line_start";
"L" = "goto_line_end";
};
select = {
"H" = "goto_line_start";
"L" = "goto_line_end";
};
};
};
}; };
} }