aliases: formatting

This commit is contained in:
Fernando Schauenburg 2021-08-16 11:22:11 +02:00
parent 63828b6118
commit e611189a39

View file

@ -29,17 +29,20 @@ else
ltc="tree -C --dirsfirst -FI '.git'" ltc="tree -C --dirsfirst -FI '.git'"
fi fi
alias ll="ls -l" alias \
alias lla="la -l" ll="ls -l" \
lla="la -l"
alias grep="grep --color=auto" alias \
alias egrep="egrep --color=auto" grep="grep --color=auto" \
alias fgrep="fgrep --color=auto" egrep="egrep --color=auto" \
fgrep="fgrep --color=auto"
alias tmux="tmux -f $XDG_CONFIG_HOME/tmux/tmux.conf" alias tmux="tmux -f $XDG_CONFIG_HOME/tmux/tmux.conf"
if command -v nvim >/dev/null 2>&1; then if command -v nvim >/dev/null 2>&1; then
alias vim="nvim" alias \
alias vimdiff="nvim -d" vim="nvim"
vimdiff="nvim -d"
fi fi