aliases: formatting
This commit is contained in:
parent
63828b6118
commit
e611189a39
1 changed files with 10 additions and 7 deletions
17
zsh/aliases
17
zsh/aliases
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue