Skip to content

Commit

Permalink
fix(color): add highlighting colors for search an replace
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyxels committed Jul 8, 2024
1 parent 1962ad0 commit 11850b0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions config/color.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
{pkgs, ...}: {
extraPlugins = with pkgs.vimPlugins; [gruvbox-baby];

colorscheme = "gruvbox-baby";

# make s/x/y/gc highlighting work, see https://github.com/luisiacc/gruvbox-baby/issues/70#issuecomment-2205861831
globals.gruvbox_baby_highlights = {
IncSearch = {
bg = "#ff9e64";
fg = "White";
};
CurSearch = {link = "IncSearch";};
};
}

0 comments on commit 11850b0

Please sign in to comment.