1 # If not running interactively, don't do anything else
2 [[ $
- != *i
* ]] && return
4 # from https://unix.stackexchange.com/a/55935
6 cwd
=$
(sed -e "s:$HOME:~:" -e "s:\(\.\?[^/]\)[^/]*/:\1/:g" <<<$PWD)
9 PS1
="\u@\h \$(a_prompt)> "
12 # echo -e "\033[5 q" # blinking
13 echo -e "\033[6 q" # non-blinking
20 HISTCONTROL
=ignoreboth
21 HISTIGNORE
='ls:l:s:g:[bf]g:history'
22 HISTTIMEFORMAT
='%F %T '
26 alias ls='ls --color=auto'
27 alias l
='ls -lh' # long format and human-readable sizes
28 alias ll
='l -A' # long format, all files
30 include
/usr
/share
/bash-completion
/completions
/git
&& __git_complete g _git
31 alias mpv
="mpv --ytdl-format mp4"
36 alias m
="mbsync csclub; mbsync uwaterloo; mbsync amin"
37 alias best
="youtube-dl -f best"
41 [ -d ${1} ] || git clone https
://aur.archlinux.org
/${1}.git
46 include
/usr
/share
/fzf
/key-bindings.bash
47 include
/usr
/share
/fzf
/completion.bash
49 if ! pgrep
-u "$USER" ssh-agent
> /dev
/null
; then
50 ssh-agent
> ~
/.ssh-agent-thing
52 if [[ ! "$SSH_AUTH_SOCK" ]]; then
53 eval "$(<~/.ssh-agent-thing)"