From e611189a39042447a9cbbae78fd3db3a2cbb49d2 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Mon, 16 Aug 2021 11:22:11 +0200 Subject: [PATCH] aliases: formatting --- zsh/aliases | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/zsh/aliases b/zsh/aliases index 64487f8..efd7e17 100644 --- a/zsh/aliases +++ b/zsh/aliases @@ -29,17 +29,20 @@ else ltc="tree -C --dirsfirst -FI '.git'" fi -alias ll="ls -l" -alias lla="la -l" +alias \ + ll="ls -l" \ + lla="la -l" -alias grep="grep --color=auto" -alias egrep="egrep --color=auto" -alias fgrep="fgrep --color=auto" +alias \ + grep="grep --color=auto" \ + egrep="egrep --color=auto" \ + fgrep="fgrep --color=auto" alias tmux="tmux -f $XDG_CONFIG_HOME/tmux/tmux.conf" if command -v nvim >/dev/null 2>&1; then - alias vim="nvim" - alias vimdiff="nvim -d" + alias \ + vim="nvim" + vimdiff="nvim -d" fi