Compare commits

...

2 Commits

Author SHA1 Message Date
Xavier Logerais
7f3f24e14d feat: Ajout support outil mise-en-place (https://mise.jdx.dev/) 2024-06-13 10:57:24 +02:00
Xavier Logerais
45914bdb5a feat: Amélioration configuration McFly 2024-06-13 10:56:39 +02:00
2 changed files with 16 additions and 6 deletions

View File

@ -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

8
rc.d/mise Normal file
View File

@ -0,0 +1,8 @@
#!/bin/bash
if (command -v mise &>/dev/null); then
# activate mise-en-place (https://mise.jdx.dev/)
eval "$(mise activate bash)"
fi