chore(rc): rework fzf integration config

This commit is contained in:
2025-11-01 12:53:41 +01:00
parent 8fef2338eb
commit 594a212ebc

View File

@@ -4,28 +4,31 @@ if (command -v fzf &>/dev/null); then
source <(fzf --bash) source <(fzf --bash)
# Selection de fichiers
export FZF_CTRL_T_OPTS="--height 60% \
--border sharp \
--layout reverse \
--prompt '󰈞 ' \
--pointer \
--marker ✔"
# Navigation vers un répertoire # Navigation vers un répertoire
export FZF_ALT_C_OPTS="--height 60% \ export FZF_ALT_C_OPTS="\
--border sharp \ --height 60% \
--layout reverse \ --border sharp \
--prompt '󰥨 ' \ --layout reverse \
--pointer \ --prompt '󰥨 ' \
--marker ✔" --pointer \
--marker ✔"
# Selection de fichiers
export FZF_CTRL_T_OPTS="\
--height 60% \
--border sharp \
--layout reverse \
--prompt '󰈞 ' \
--pointer \
--marker ✔"
# Navigation dans l'historique # Navigation dans l'historique
export FZF_CTRL_R_OPTS="--height 60% \ export FZF_CTRL_R_OPTS="\
--border sharp \ --height 60% \
--layout reverse \ --border sharp \
--prompt ' ' \ --layout reverse \
--pointer \ --prompt ' ' \
--marker ✔" --pointer \
--marker ✔"
fi fi