diff options
Diffstat (limited to 'dot.zshrc.local')
| -rw-r--r-- | dot.zshrc.local | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/dot.zshrc.local b/dot.zshrc.local index a1a4456..8dd9652 100644 --- a/dot.zshrc.local +++ b/dot.zshrc.local @@ -1,14 +1,21 @@ # -*- shell-script -*- +zstyle :prompt:grml:right:setup use-rprompt false . ~/.zshrc.from_grml (( $+commands[bsdtar] )) && alias tar=bsdtar -(( $+commands[chg] )) && alias hg=chg (( $+commands[nvim] )) && alias vim=nvim alias g=git alias ec="emacsclient -n" alias et="emacsclient -t" alias hl="highlight -O ansi" -zstyle :prompt:grml:left:items:percent pre ' -' +if (( $+commands[exa] )); then + alias ls="exa" + alias l="exa -g -l --git" + alias la="exa -g -la --git" +fi +if (( $+commands[rsync] )); then + alias rs="rsync -vahPi" +fi +zstyle :prompt:grml:left:items:percent pre $'\n' gpg-connect-agent /bye ssh-add -l function countdown { |
