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
|
# 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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue