config/helix: make linenr.selected more obvious

This commit is contained in:
Aaron Bieber 2023-05-03 12:14:48 -06:00
parent d649a44e4a
commit 6c13318c9f
No known key found for this signature in database

View File

@ -2,6 +2,7 @@
let
tomlFmt = pkgs.formats.toml { };
heliBin = "${pkgs.helix}/bin/hx";
helixConfig = tomlFmt.generate "config.toml" {
theme = "acme-nobg";
@ -21,14 +22,13 @@ let
"ui.background" = "default";
"ui.linenr" = "default";
"ui.linenr.selected" = "#DEDEFF";
};
xdgDir = linkFarm "helix-config" [
{ name = "helix/config.toml"; path = helixConfig; }
{ name = "helix/themes/acme-nobg.toml"; path = helixTheme; }
];
helixBin = "${pkgs.helix}/bin/hx";
in pkgs.writeScriptBin "hx" ''
# Conf: ${helixConfig}
# Theme: ${helixTheme}