diff options
-rw-r--r-- | .zsh.after/functions.zsh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.zsh.after/functions.zsh b/.zsh.after/functions.zsh index 5be8e73..b089ff6 100644 --- a/.zsh.after/functions.zsh +++ b/.zsh.after/functions.zsh @@ -149,6 +149,9 @@ ex() { *.gpg) gpg -o ${1%".gpg"} -d $1 ;; + *.asc) + gpg -o ${1%".asc"} -d $1 + ;; *.gz) gunzip $1 ;; |