1
0
forked from extern/nix-config

Remove where alias

Since "where" is not common to all shells, aliasing it instead of simply
using type does more harm than good, since any other machines you work
with will not have this alias.
This commit is contained in:
Donovan Glover 2018-09-19 14:37:08 -04:00
parent 7be289730b
commit dbf1a7ce18
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -17,8 +17,6 @@ alias ls="exa"
alias l="exa -1" # Show each output from ls on a separate line
alias where="type" # An alternative for shells that don't use the where command
alias ...="cd ../.." # Easily go up 2 directories
alias ....="cd ../../.." # Easily go up 3 directories