bash_profile @ a59166904d96

Use friendly-find!
author Steve Losh <steve@stevelosh.com>
date Sat, 29 Sep 2012 14:13:17 -0400
parents 3914c613a920
children 1d45e21ca4d7
#!/usr/bin/env bash

# This file contains aliases and functions that duplicate some fish
# functionality, because Vim will use bash as its external command shell.

function a() {
    if [ -f '.agignorevcs' ]; then
        ag -U $*
    else
        ag $*
    fi
}