From 45914bdb5a1f03059fcbb87d195057f84c282e0b Mon Sep 17 00:00:00 2001 From: Xavier Logerais Date: Thu, 13 Jun 2024 10:56:39 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20Am=C3=A9lioration=20configuration=20McF?= =?UTF-8?q?ly?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- rc.d/mcfly | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/rc.d/mcfly b/rc.d/mcfly index a31dd12..0284aa4 100644 --- a/rc.d/mcfly +++ b/rc.d/mcfly @@ -1,9 +1,11 @@ #!/bin/bash -if (which mcfly &> /dev/null) -then - export MCFLY_INTERFACE_VIEW=BOTTOM - export MCFLY_RESULTS=25 - export MCFLY_RESULTS_SORT=LAST_RUN - eval "$(mcfly init bash)" +if (which mcfly &>/dev/null); then + export MCFLY_PROMPT="❯" + export MCFLY_INTERFACE_VIEW=BOTTOM + export MCFLY_RESULTS=50 + export MCFLY_RESULTS_SORT=LAST_RUN + # export MCFLY_KEY_SCHEME=vim + export MCFLY_FUZZY=3 + eval "$(mcfly init bash)" fi