1 # If not running interactively, don't do anything else
2 [[ $
- != *i
* ]] && return
4 [[ $TERM = "eterm-color" ||
$TERM = "screen" ]] && source ~
/.bash_profile
6 # from https://unix.stackexchange.com/a/55935
8 cwd
=$
(sed -e "s:$HOME:~:" -e "s:\(\.\?[^/]\)[^/]*/:\1/:g" <<<$PWD)
11 PS1
="\u@\h \$(a_prompt)> "
14 # echo -e "\033[5 q" # blinking
15 echo -e "\033[6 q" # non-blinking
22 HISTCONTROL
=ignoreboth
23 HISTIGNORE
='ls:l:s:g:[bf]g:history'
24 HISTTIMEFORMAT
='%F %T '
28 alias ls='ls --color=auto'
29 alias l
='ls -lh' # long format and human-readable sizes
30 alias ll
='l -A' # long format, all files
32 include
/usr
/share
/bash-completion
/completions
/git
&& __git_complete g _git
33 alias mpv
="mpv --ytdl-format mp4"
38 alias mbsync
='mbsync -c "$XDG_CONFIG_HOME"/isync/mbsyncrc'
39 alias getmail
='getmail --getmaildir "$XDG_CONFIG_HOME"/getmail --rcfile getmailrc'
40 alias mb
="mbsync csclub; mbsync uwaterloo; mbsync amin"
43 alias best
="youtube-dl -f best"
45 alias se
="SUDO_EDITOR=\"emacsclient\" sudo -e"
49 [ -d ${1} ] || git clone https
://aur.archlinux.org
/${1}.git
54 include
/usr
/share
/fzf
/key-bindings.bash
55 include
/usr
/share
/fzf
/completion.bash
57 if ! pgrep
-u "$USER" ssh-agent
> /dev
/null
; then
58 ssh-agent
> ~
/.ssh-agent-thing
60 if [[ ! "$SSH_AUTH_SOCK" ]]; then
61 eval "$(<~/.ssh-agent-thing)"