summaryrefslogtreecommitdiff
path: root/.bashrc
blob: c2b206d3477df6c622f64eaec71074fabc447c1a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

# return when not interactive
case "$-" in
*i*)
	;;
*)
	return
	;;
esac

# bashism
complete -cf doas

# shism u_u
[ -f "${XDG_CONFIG_HOME:-$HOME/.config}/shell/init" ] &&
	. "${XDG_CONFIG_HOME:-$HOME/.config}/shell/init"