Closed ghost closed 2 years ago
There is a typo on the alias "tree=lsd".
It's written there: "command -v lsd > /dev/null && alias ls='lsd --tree'". That way, it will overwrite the ls alias that we want, so it should be: command -v lsd > /dev/null && alias tree='lsd --tree'
Same thing happens to "cat=bat" and "less=bat".
Just fixed it ;) Sorry for the long delay, I've been really busy
There is a typo on the alias "tree=lsd".
It's written there: "command -v lsd > /dev/null && alias ls='lsd --tree'". That way, it will overwrite the ls alias that we want, so it should be: command -v lsd > /dev/null && alias tree='lsd --tree'
Same thing happens to "cat=bat" and "less=bat".