tb-dotfiles/chezmoi/dot_zshrc.d/executable_tag.zsh
2022-04-22 10:06:53 -04:00

6 lines
230 B
Bash

if command -v tag &> /dev/null; then
export TAG_SEARCH_PROG=ag # replace with rg for ripgrep
tag() { command tag "$@"; source ${TAG_ALIAS_FILE:-/tmp/tag_aliases} 2>/dev/null }
alias ag=tag # replace with rg for ripgrep
fi