1
0
mirror of https://github.com/bertptrs/vimconfig.git synced 2025-12-25 20:40:32 +01:00

Compare commits

...

2 Commits

Author SHA1 Message Date
2b1351fbfe Alias cat to bat when available 2021-09-20 11:51:40 +02:00
d6667b02d5 Configure auto notify excemptions 2021-09-20 11:51:40 +02:00

View File

@@ -57,6 +57,18 @@ done
fpath+=("$ZDOTDIR/plugins/nix-zsh-completions")
# Configure auto-notify
AUTO_NOTIFY_IGNORE+=(
"gcloud compute ssh"
"nix run"
"git"
"bash"
"sem debug"
"git log"
"journalctl"
"jekyll serve"
)
## Autosuggest plugin configuration
# Consider autocomplete in completion
@@ -274,6 +286,8 @@ fi
# Use bat as a man pager if it's available
if (( $+commands[bat] )); then
export MANPAGER="sh -c 'col -bx | bat -l man -p'"
# And replace cat while we're at it
alias cat='bat'
fi
############################