feat(aliases): Amélioration des aliases pour lazygit et lsd

This commit is contained in:
Xavier Logerais 2024-01-27 19:14:59 +01:00
parent 66c57a0a51
commit df8172f138
2 changed files with 8 additions and 6 deletions

View File

@ -1,5 +1,6 @@
# Lazygit #/bin/bash
if ( which lazygit &> /dev/null )
if (command -v lazygit &> /dev/null)
then then
alias lg='lazygit' alias lg=lazygit
fi fi

View File

@ -1,5 +1,6 @@
# LSD #!/bin/bash
if ( command -v lsd &> /dev/null )
if (command -v lsd &> /dev/null)
then then
alias ls='lsd' alias ls=lsd
fi fi