fzf: add page-up/page-down + visual tweaks

This commit is contained in:
Fernando Schauenburg 2024-03-17 23:35:13 +01:00
parent c15bb13a00
commit 54c68d0076

View file

@ -1,11 +1,11 @@
fzf_colors=( fzf_colors=(
fg:#8185A7 fg:bright-black
fg+:bright-white:bold fg+:bright-white:bold
bg+:-1 bg+:-1
hl:yellow:regular hl:yellow:regular
hl+:bright-yellow:bold hl+:bright-yellow:bold
query:bright-white:regular query:bright-white:regular
info:blue:bold info:blue:regular
border:bright-black border:bright-black
scrollbar:white scrollbar:white
separator:bright-black separator:bright-black
@ -17,6 +17,8 @@ fzf_colors=(
) )
fzf_bindings=( fzf_bindings=(
ctrl-f:page-down
ctrl-b:page-up
ctrl-o:toggle-up ctrl-o:toggle-up
ctrl-t:toggle-all ctrl-t:toggle-all
ctrl-x:deselect-all ctrl-x:deselect-all
@ -27,7 +29,7 @@ fzf_defaults=(
--border=rounded --border=rounded
--scrollbar= --scrollbar=
--prompt='" "' --prompt='" "'
--pointer='"󰓾 "' --pointer='" "'
--marker='"󰄴 "' --marker='"󰄴 "'
--color="${(pj/,/)fzf_colors}" --color="${(pj/,/)fzf_colors}"
--bind="${(pj/,/)fzf_bindings}" --bind="${(pj/,/)fzf_bindings}"