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
if ( which lazygit &> /dev/null )
#/bin/bash
if (command -v lazygit &> /dev/null)
then
alias lg='lazygit'
alias lg=lazygit
fi

View File

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