Skip to content

Commit

Permalink
Add some nice cursor highlighting in helix
Browse files Browse the repository at this point in the history
  • Loading branch information
arunoruto committed Jan 7, 2025
1 parent fd7d580 commit ab97adb
Showing 1 changed file with 28 additions and 2 deletions.
30 changes: 28 additions & 2 deletions modules/home-manager/server/cli/helix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,36 @@ in

home.file.".config/helix/themes/my-stylix.toml".source = toml.generate "my-stylix.toml" {
inherits = "stylix";
"ui.cursor.match" = {
fg = "base08";
# "ui.selection" = {
# fg = "base0A";
# };
# "ui.selection.primary" = {
# fg = "base02";
# };
"ui.cursor" = {
fg = "base0B";
modifiers = [ "reversed" ];
};
"ui.cursor.primary" = {
fg = "base0A";
modifiers = [ "reversed" ];
};
"ui.cursor.match" = {
fg = "base0A";
modifiers = [ "underlined" ];
};
# ui.cursor = {
# fg = "base0B";
# modifiers = [ "reversed" ];
# primary = {
# fg = "base0A";
# modifiers = [ "reversed" ];
# };
# match = {
# fg = "base0A";
# modifiers = [ "underlined" ];
# };
# };
};
};
}

0 comments on commit ab97adb

Please sign in to comment.