emacs: update packages
[~bandali/configs] / .bashrc
CommitLineData
d99f86cd
AB
1# If not running interactively, don't do anything else
2[[ $- != *i* ]] && return
3
840b56ca
AB
4[[ $TERM = "eterm-color" || $TERM = "screen" ]] && source ~/.bash_profile
5
acb525a9
AB
6# from https://unix.stackexchange.com/a/55935
7a_prompt() {
8 cwd=$(sed -e "s:$HOME:~:" -e "s:\(\.\?[^/]\)[^/]*/:\1/:g" <<<$PWD)
9 printf $cwd
10}
11PS1="\u@\h \$(a_prompt)> "
12
d99f86cd
AB
13# i-beam cursor
14# echo -e "\033[5 q" # blinking
15echo -e "\033[6 q" # non-blinking
16
58a81de3
AB
17# various bash tweaks
18shopt -s histappend
19shopt -s cmdhist
20HISTSIZE=
21HISTFILESIZE=
22HISTCONTROL=ignoreboth
d99f86cd 23HISTIGNORE='ls:l:s:g:[bf]g:history'
58a81de3
AB
24HISTTIMEFORMAT='%F %T '
25stty stop ""
6b8582fa 26
dc9a8087 27# aliases
6b8582fa 28alias ls='ls --color=auto'
d99f86cd
AB
29alias l='ls -lh' # long format and human-readable sizes
30alias ll='l -A' # long format, all files
31alias g='git'
32include /usr/share/bash-completion/completions/git && __git_complete g _git
dc9a8087
AB
33alias mpv="mpv --ytdl-format mp4"
34alias mv="mv -iv"
35alias cp="cp -iv"
36alias scl=systemctl
37alias jcl=journalctl
c036d6d7 38alias mbsync='mbsync -c "$XDG_CONFIG_HOME"/isync/mbsyncrc'
249a5298
AB
39alias getmail='getmail --getmaildir "$XDG_CONFIG_HOME"/getmail --rcfile getmailrc'
40alias mb="mbsync csclub; mbsync uwaterloo; mbsync amin"
41alias gm="getmail"
42alias m="mb; gm"
dc9a8087
AB
43alias best="youtube-dl -f best"
44
45aur() {
46 cd ~/usr/builds
d55c009f 47 [ -d ${1} ] || git clone https://aur.archlinux.org/${1}.git
dc9a8087
AB
48 cd ${1}
49}
50
d99f86cd
AB
51# fzf
52include /usr/share/fzf/key-bindings.bash
53include /usr/share/fzf/completion.bash
58a81de3 54
6e39e3a2
AB
55if ! pgrep -u "$USER" ssh-agent > /dev/null; then
56 ssh-agent > ~/.ssh-agent-thing
57fi
58if [[ ! "$SSH_AUTH_SOCK" ]]; then
59 eval "$(<~/.ssh-agent-thing)"
60fi