From 6e3a3fe532a5ab03ed7b4581681517fcd37dcd7d Mon Sep 17 00:00:00 2001 From: adrian5 Date: Sat, 24 Sep 2022 16:50:29 +0200 Subject: [PATCH] fix: add fish pager selection color (#222) --- lua/tokyonight/extra/fish.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lua/tokyonight/extra/fish.lua b/lua/tokyonight/extra/fish.lua index 80f0c28..8e3e793 100644 --- a/lua/tokyonight/extra/fish.lua +++ b/lua/tokyonight/extra/fish.lua @@ -24,7 +24,7 @@ function M.generate(colors) set -l purple ${purple} set -l cyan ${cyan} set -l pink ${magenta} - + # Syntax Highlighting Colors set -g fish_color_normal $foreground set -g fish_color_command $cyan @@ -40,13 +40,14 @@ function M.generate(colors) set -g fish_color_operator $green set -g fish_color_escape $pink set -g fish_color_autosuggestion $comment - + # Completion Pager Colors set -g fish_pager_color_progress $comment set -g fish_pager_color_prefix $cyan set -g fish_pager_color_completion $foreground set -g fish_pager_color_description $comment - + set -g fish_pager_color_selected_background --background=$selection + ]], fishColors )