start out with thoughtbots version

This commit is contained in:
Thomas Ruoff
2017-08-13 23:14:19 +02:00
parent e2663a5f4b
commit a638143b7f
24 changed files with 279 additions and 123 deletions

7
zsh/completion/_ag Normal file
View File

@@ -0,0 +1,7 @@
#compdef ag
if (( CURRENT == 2 )); then
compadd $(cut -f 1 tmp/tags .git/tags 2>/dev/null)
else;
_files
fi