From 1c70c3c695fedcc4f31ab557588644da45c793d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Tue, 9 May 2023 09:45:25 -0300 Subject: [PATCH] helix: update cursorline theme --- user/helix.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/user/helix.nix b/user/helix.nix index f21f232..75c4ee5 100644 --- a/user/helix.nix +++ b/user/helix.nix @@ -90,7 +90,9 @@ in "ui.cursor.primary" = { fg = accent.fg; bg = accent.color; }; "ui.cursorline.primary" = { bg = color.bg_dark; }; "ui.cursorcolumn.primary" = { modifiers = [ "bold" ]; }; - "ui.linenr.selected" = { fg = color.nontxt; }; + "ui.cursorline" = { bg = "none"; }; + "ui.cursorcolumn" = { bg = "none"; }; + "ui.linenr.selected" = { fg = color.txt; }; function = color.normal.orange; module = color.normal.brown; @@ -111,7 +113,6 @@ in }; }; }; - home.packages = with pkgs; [ unstable.helix ]; home.sessionVariables = lib.mkIf (editor == "helix") { EDITOR = "hx"; };