bash_profile @ 1d45e21ca4d7

Moar.
author Steve Losh <steve@stevelosh.com>
date Sun, 30 Sep 2012 12:01:01 -0400
parents 3914c613a920
children c82fca40999a
#!/usr/bin/env bash

shopt -s expand_aliases


# 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
}

export PATH=~/bin:~/lib/dotfiles/bin:/usr/local/share/python:$PATH