bash_profile @ efc8b9162ff8

Moar.
author Steve Losh <steve@stevelosh.com>
date Thu, 27 Sep 2012 13:57:25 -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
}