feat(helix): switch to unstable & add settings
This commit is contained in:
parent
d3220874f4
commit
75fa9b8dc7
|
@ -4,7 +4,19 @@
|
|||
# TODO use tree-sitter grammars from nixpkgs
|
||||
programs.helix = {
|
||||
enable = true;
|
||||
languages = [ ];
|
||||
settings = { theme = "base16_default_dark"; };
|
||||
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";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue