diff options
| author | Thomas Schneider <qsx@chaotikum.eu> | 2020-04-17 15:42:56 +0200 |
|---|---|---|
| committer | Thomas Schneider <qsx@chaotikum.eu> | 2020-04-17 15:42:56 +0200 |
| commit | b5b88e84f051aa0b2329a229c98d2e2d7a748ab8 (patch) | |
| tree | 5e9af9aaf7f9afb67ec8aa218a1eb2dd50ded9a7 /dot.zshrc.local | |
| parent | 6d68935a4580864911ba5745a1551bae9d85801d (diff) | |
| parent | 15435b0f800ba61d955f7ebe54c48a21777f2fb4 (diff) | |
Merge remote-tracking branch 'origin/main' into neptun
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 { |
