blob: 2632b060f8a6c22db4085cd8a7a960a6f56727b6 (
plain)
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
|
# # be paranoid
alias rm='rm -i'
alias grep="ugrep --exclude-dir=node-modules --exclude-dir=_build"
alias e="$EDITOR"
alias g="git"
alias grep="ugrep"
alias tldr="NO_COLOR=1 tldr"
alias fd="find . -name $1*"
alias dedoc="dedoc --color off"
alias doc="dedoc --color off search"
alias kill-sessions="tmux kill-session -a"
kill-unattached() {
tmux list-sessions -F '#{session_attached} #{session_id}' | \
awk '/^0/{print $2}' | \
xargs -n 1 tmux kill-session -t
}
refs() {
recsel -q $1 ~/refs.rec
}
addref() {
$EDITOR /tmp/description
cat /tmp/description | xargs -I {} recins refs.rec -f Title -v $1 -f Tags -v $2 -f Text -v {}
}
notes() {
grep -i "$1" --format='%f%~' ~/notes/ | xargs -I {} cat {}
}
#eval "$(opam env)"
echo "BAT: $(apm -l), $(apm -b)"
set -o vi
export PS1='\W \$ '
eval "$(zoxide init posix --hook prompt)"
#[[ $TERM != "tmux-256color" ]] && exec tmux
|