Multiple changes

Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
Severin Kaderli 2018-12-09 23:35:23 +01:00
parent ac5cfa4350
commit f60c23feaa
10 changed files with 115 additions and 192 deletions

View file

@ -4,9 +4,12 @@
# Shortcut for clear because I often type the DOS command instead
alias cls="clear"
# Some aliases for ls
alias ls="ls -Fhl --color=auto"
alias ll="ls -aFhl --color=auto"
# Use exa as ls replacement
alias ls="exa -al"
alias ll="exa -al"
# Use ripgrep as grep replacement
alias grep="rg -n"
# cd shortcut to get to my Projects folder
alias pj="cd ~/Projects"