.rc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/sh PS1='$(prompt) \$ ' # this is a story all about how # history control in bash sucks, wow HISTFILE=~/.sh_eternal_history HISTSIZE= HISTCONTROL=ignoredups:erasedups shopt -s histappend # extend pa for git stuffs # meh i don't like this at all tbh pa() { case $1 in g) cd "${PA_DIR:=${XDG_DATA_HOME:=$HOME/.local/share}/pa/passwords}" git pull git add --all git commit -m '*' git push cd - ;; *) command pa "$@" ;; esac } if ls --version 2>&1 | grep -iE "gnu|busybox" > /dev/null; then alias ls='ls --color=auto -p ' fi if [ -z "${SSH_AGENT_PID}" ] then if ! [ -e /tmp/ssh-agent-$USER ] then ssh-agent 2>/dev/null >/tmp/ssh-agent-$USER fi . /tmp/ssh-agent-$USER >/dev/null fi if [ "$TERM" = "foot" ]; then alias ssh='TERM=xterm-256color ssh' fi # simple prompt # for demo purposes mostly alias sp="export PS1='$ '" command -v direnv >/dev/null 2>&1 && eval "$(direnv hook bash)"