feat(profile): Amélioration de la gestions des applications par défaut

This commit is contained in:
Xavier Logerais 2025-01-17 09:03:19 +00:00
parent 3759b1b0ac
commit ebb0139dbe

View File

@ -8,7 +8,9 @@ if (command -v nvim &>/dev/null); then
fi fi
# PAGER # PAGER
if (command -v less &>/dev/null); then
export PAGER=less export PAGER=less
fi
# MANPAGER # MANPAGER
if (command -v nvim &>/dev/null); then if (command -v nvim &>/dev/null); then
@ -18,7 +20,11 @@ elif (command -v bat &>/dev/null); then
fi fi
# TERMINAL # TERMINAL
if (command -v kitty &>/dev/null); then
export TERMINAL=kitty export TERMINAL=kitty
fi
# BROWSER # BROWSER
if (command -v firefox &>/dev/null); then
export BROWSER=firefox export BROWSER=firefox
fi