1
0
mirror of https://github.com/bertptrs/vimconfig.git synced 2025-12-28 05:50:31 +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") 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 ## Autosuggest plugin configuration
# Consider autocomplete in completion # Consider autocomplete in completion
@@ -274,6 +286,8 @@ fi
# Use bat as a man pager if it's available # Use bat as a man pager if it's available
if (( $+commands[bat] )); then if (( $+commands[bat] )); then
export MANPAGER="sh -c 'col -bx | bat -l man -p'" export MANPAGER="sh -c 'col -bx | bat -l man -p'"
# And replace cat while we're at it
alias cat='bat'
fi fi
############################ ############################