-
Notifications
You must be signed in to change notification settings - Fork 2
/
zshrc
576 lines (498 loc) · 20.8 KB
/
zshrc
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
#export XDG_CONFIG_HOME="/home/proycon/.config" Path to your oh-my-zsh configuration.
ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
[ -z "$ZSH_THEME" ] && ZSH_THEME="proysh"
# Set to this to use case-sensitive completion
# CASE_SENSITIVE="true"
# Comment this out to disable weekly auto-update checks
export DISABLE_AUTO_UPDATE="true"
# Uncomment following line if you want to disable colors in ls
# DISABLE_LS_COLORS="true"
# Uncomment following line if you want to disable autosetting terminal title.
# DISABLE_AUTO_TITLE="true"
# Uncomment following line if you want red dots to be displayed while waiting for completion
# COMPLETION_WAITING_DOTS="true"
unset CHECKGIT
export DISABLE_UNTRACKED_FILES_DIRTY="true"
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
plugins=(ansible archlinux colored-man-pages debian fd git git-flow github history history-substring-search lxd pip python pylint ripgrep rust systemd ufw vi-mode zsh-autosuggestions pass podman qrcode rsync kubectl)
source $ZSH/oh-my-zsh.sh
setopt cshnullglob
unsetopt correct_all
unset GREP_OPTIONS #deprecated
if [ "$OSTYPE" = "linux-musl" ]; then
unalias grep
fi
#apps
menu () {
whiptail --menu "Menu" 25 80 15 sysadmin "Sysadmin tools" file "File management" desktop "Desktop" development "Development" net "Network" data "Data tools" security "Security" media "Audio/Video" other "Other" tldr "tldr" cheat "cheat" 2> ~/.menuchoice
choice=$(cat ~/.menuchoice)
if [[ "$choice " == "sysadmin"* ]]; then
whiptail --menu "Menu" 25 80 15 btop "Interactive process viewer" cyme "lsusb alternative" dbus-monitor "DBUS Monitor" htop "Interactive process viewer" iostat "I/O Statistics" iotop "I/O monitor (root)" lshw "List hardware" lsmod "List kernel modules" lsof "List open files" lspci "List PCI devices" lsusb "List USB devices" netcat "Read/write network data" netstat "Print network connections" pkgtop "Package manager" top "Interactive process viewer" tspin "Tailspin: highlighting for logs" udevadm "Device administration" vmstat "Report virtual memory statistics" 2> ~/.menuchoice
eval $(cat ~/.menuchoice)
elif [[ "$choice " == "net"* ]]; then
whiptail --menu "Menu" 25 80 15 atac "API client (postman-like)" atop "Apache top (root)" bmon "Bandwidth Monitor" curl "CLI for HTTP requests (and more)" iftop "Network interface monitoring" nc "Netcat: Read/write network data" netscanner "Network/Wireless monitor" netstat "Print network connections" nmap "Port scanner" termshark "TUI for Packet sniffing" wavemon "Wireless monitor" wget "Downloader" 2> ~/.menuchoice
eval $(cat ~/.menuchoice)
elif [[ "$choice " == "development"* ]]; then
whiptail --menu "Menu" 25 80 15 abuild "Alpine Package builder" adb "Android Debug Bridge" crates-tui "Crates.io browser" fastboot "Bootloader bridge" flamegraph "Flamegraph" gdb "GNU Debugger" gh "GitHub CLI" "gh dash" "GitHub Dashboard TUI" hut "SourceHut CLI" hyperfine "Benchmarker" make "GNU Make" mosquitto-sub "MQTT sub client" mosquitto-pub "MQTT pub client" openapi-tui "OpenAPI TUI" pmbootstrap "PostmarketOS bootstrap" podman "Container management" scc "Code counter" tig "TUI for git" tokei "Code counter" twine "PyPI package publishing" zola "Static site generator" 2> ~/.menuchoice
eval $(cat ~/.menuchoice)
elif [[ "$choice " == "file"* ]]; then
whiptail --menu "Menu" 25 80 15 find "Find" fd "Find (alternative)" fdisk "Partioner" fzf "Fuzzy finder" lf "Terminal file manager" ncdu "Disk usage TUI" tree "Tree" rclone "File transfer" rsync "File transfer" yazi "Terminal file manager" 2> ~/.menuchoice
eval $(cat ~/.menuchoice)
elif [[ "$choice " == "data"* ]]; then
whiptail --menu "Menu" 25 80 15 column "Pretty-print columns" ack "Grep-like text finder" bat "Fancy cat viewer" csvlens "CSV pager" diff "Diff" difft "Difftastic" delta "Fancy diff" glow "Fancy markdown viewer" jless "JSON pager" jq "JSON-processor" mdcat "Markdown cat" mdless "Markdown less" otree "Otree object viewer (json etc)" pandoc "Document conversion" rg "Ripgrep" tw "Tabiew: view tabular data" vd "Tabular data viewer" mlr "TSV,CSV,JSON processor" xsv "CSV processor" zbarimg "QRcode decoder" pgcli "Postgresql client" 2> ~/.menuchoice
eval $(cat ~/.menuchoice)
elif [[ "$choice " == "security"* ]]; then
whiptail --menu "Menu" 25 80 15 age "File encryption" flawz "CVE browser (TUI)" gpg "GnuPG" gpg-tui "GnuPG TUI" pass "Password manager" pwgen "Password generator" nitropy "NitroKey tool" 2> ~/.menuchoice
eval $(cat ~/.menuchoice)
elif [[ "$choice " == "media"* ]]; then
whiptail --menu "Menu" 25 80 15 alsamixer "Mixer TUI" ffmpeg "Media transcoder and more" grim "Screenshots for wayland" mpc "MPD client" mpv "Media player" pactl "CLI for pulseaudio" yt-dlp "Youtube downloader" 2> ~/.menuchoice
eval $(cat ~/.menuchoice)
elif [[ "$choice " == "desktop"* ]]; then
whiptail --menu "Menu" 25 80 15 lswt "List wayland toplevels" 2> ~/.menuchoice
eval $(cat ~/.menuchoice)
elif [[ "$choice " == "other"* ]]; then
whiptail --menu "Menu" 25 80 15 argos-translate "Machine Translation" buku "Bookmark manager" cal "Calendar" figlet "Banner-like" "todo.sh more" "Todo manager" ollama "Local LLM runner" tclock "Clock/timer in terminal (clock-tui)" tmux "Terminal Multiplexer" numen "Speech Recognition" 2> ~/.menuchoice
eval $(cat ~/.menuchoice)
else
eval $(cat ~/.menuchoice)
fi
}
resultsound () {
if [ $1 -eq 0 ]; then
if [ -f $HOME/dotfiles/media/$2 ]; then
mpv --really-quiet $HOME/dotfiles/media/$2 2>/dev/null &!
fi
else
if [ -f $HOME/dotfiles/media/$3 ]; then
mpv --really-quiet $HOME/dotfiles/media/$3 2>/dev/null &!
fi
fi
return $1
}
alias en='LANGUAGE="en_US.UTF-8" zsh'
alias km="setxkbmap proylatin"
alias mi='LANGUAGE="en_GB.UTF-8" make install; resultsound $? submit.wav boing.wav'
alias glmi='sshcheck && git pull && && git submodule update && LANGUAGE="en_GB.UTF-8" make install; resultsound $? submit.wav boing.wav'
alias glsi='git pull && git submodule update && pip install .; resultsound $? submit.wav boing.wav'
alias pi='pip install .; resultsound $? submit.wav boing.wav'
alias gl='sshcheck && git pull && git submodule update; resultsound $? wipe.wav boing.wav'
alias glsrht='sshcheck && git pull srht master&& git submodule update; resultsound $? wipe.wav boing.wav'
alias gp='sshcheck && git push; resultsound $? submit.wav boing.wav'
alias gpsrht='sshcheck && git push srht master; resultsound $? submit.wav boing.wav'
alias gca="git commit -a"
alias pm="podman"
alias pmc="podman-compose"
alias a='tmux attach'
alias b="buku"
alias i="img2sixel"
alias tmux='tmux -2' #force 256 colour support regardless of terminal
alias ka='killall'
alias za='zathura'
alias sx='sxiv -t .'
alias gpp='git push origin gh-pages'
alias mp="ncmpcpp -b ~/dotfiles/ncmpcpp.bindings"
alias t="todo.sh more"
alias f='cd $(cat ${XDG_CONFIG_HOME:-$HOME/.config}/directories | fzf)'
alias hs="~/dotfiles/scripts/homestatus.sh"
alias yz=yazi
alias ttw="tw --separator=\" \""
alias ghils="gh issue list"
alias ghls="gh issue list"
alias ghic="gh issue create"
alias ghiv="gh issue view"
alias ghicm="gh issue comment"
alias protontricks-flat="flatpak run com.github.Matoking.protontricks"
alias hutsxmo="hut lists patchset list \~mil/sxmo-devel"
alias hutsxmo2="hut todo ticket list -t \~mil/sxmo-tickets"
alias mkenv="[ ! -e env ] && python3 -m venv env; . env/bin/activate"
alias mk.env="[ ! -e .env ] && python3 -m venv .env; . .env/bin/activate"
alias surfdrive="rclone ls surfdrive_knaw:"
alias lh="linkhandler"
alias open="linkhandler"
lh0() {
rm /tmp/linkhandler.target 2> /dev/null || echo "(already set)"
}
lh1() {
echo -n "1" > /tmp/linkhandler.target
}
lh2() {
echo -n "2" > /tmp/linkhandler.target
}
alias z='less -rN'
alias myip="dig +short myip.opendns.com @resolver1.opendns.com"
alias whatismyip="dig +short myip.opendns.com @resolver1.opendns.com"
if [[ "$HOST" == "proyphone" ]] || [[ "$HOST" == "oneplus-enchilada" ]]; then
if which vis > /dev/null 2> /dev/null; then
alias vi="vis"
alias vim="vis"
fi
else
if which nvim > /dev/null 2> /dev/null; then
export EDITOR="nvim"
alias vi=nvim
alias vim=nvim
else
if which vim > /dev/null 2>/dev/null; then
export EDITOR="vim"
alias vi="vim"
fi
fi
fi
alias en2de="xl en de"
alias en2fr="xl en fr"
alias en2es="xl en es"
alias en2pt="xl en pt"
alias en2it="xl en it"
alias en2ru="xl en ru"
alias en2zh="xl en zh"
alias en2nl="xl en nl"
alias de2en="xl de en"
alias fr2en="xl fr en"
alias es2en="xl es en"
alias pt2en="xl pt en"
alias it2en="xl it en"
alias ru2en="xl ru en"
alias zh2en="xl zh en"
xl() {
. ~/local/argostranslate.env/bin/activate
FROM="$1"
shift
TO="$1"
shift
argos-translate -f "$FROM" -t "$TO" "$*"
deactivate
}
hsk() {
grep "$1" ~/projects/vocadata/zh/hsk*.tsv | cut -f 1-4
}
cedict() {
grep "$1" ~/Documents/languages/chinese/cedict.txt
}
gitlog() {
#relies on a proper pager being set for diffs in ~/.gitconfig
set pipefail
while ; do
COMMIT="$(git log --color=always --pretty="%Cgreen%cs%Creset %h %Cblue%an%Creset %Cred%d%Creset %s" | fzf --ansi | cut -d" " -f 2)"
if [ $? -ne 0 ] || [ -z "$COMMIT" ]; then
break
fi
git show "$COMMIT" || break
done
}
alias gL=gitlog
export MPD_HOST="anaproy.nl"
export DEBEMAIL="[email protected]"
export DEBFULLNAME="Maarten van Gompel"
export BROWSER="firefox"
export XDG_CONFIG_HOME="$HOME/.config"
. ~/dotfiles/user-dirs.dirs
export XDG_DESKTOP_DIR XDG_DOCUMENTS_DIR XDG_PICTURES_DIR XDG_MUSIC_DIR XDG_DOWNLOAD_DIR XDG_VIDEOS_DIR
export TODO_DIR="$HOME/.todo"
#coloured man pages
export GROFF_NO_SGR=1
man() {
env LESS_TERMCAP_mb=$'\E[01;31m' \
LESS_TERMCAP_md=$'\E[01;38;5;74m' \
LESS_TERMCAP_me=$'\E[0m' \
LESS_TERMCAP_se=$'\E[0m' \
LESS_TERMCAP_ue=$'\E[0m' \
LESS_TERMCAP_us=$'\E[04;38;5;146m' \
man "$@"
}
tlms() {
tmux list-windows -a -F "#S.#I: #W (#{window_panes}) -- #{pane_current_command} @ #{pane_current_path} -- #{t:window_activity} #{?window_activity_flag,(changed),} #{?window_active,(active),} " | while read line; do if [[ $line =~ "(changed)" ]]; then clr='\e[1;31m'; elif [[ $line =~ "(active)" ]]; then clr='\e[0;32m'; else clr='\e[0;37m'; fi; echo -e $clr " " "$line"; done
}
topcommands() {
if [ -z "$1" ]; then
n=25
else
n=$1
fi
history | awk '{CMD[$2]++;count++;}END { for (a in CMD) print CMD[a] " " CMD[a]/count*100 "% " a;}' | grep -v "./" | column -c3 -s " " -t | sort -nr | nl | head -n $1
}
#PATHS
case "$HOST" in
rocinante|trantor|mhysa|pollux)
export PATH="/home/proycon/bin:/home/proycon/.cargo/bin:/home/proycon/local/bin:$PATH"
export CDPATH=.:~/work:~/projects
hash -d X=/home/proycon/exp
hash -d W=/home/proycon/work
hash -d P=/home/proycon/projects
alias sshm='sshcheck && ssh -A mhysa.anaproy.nl'
alias sshp='sshcheck && ssh -A pollux.anaproy.nl'
;;
proyphone|pine64-pinephone|oneplus-enchilada)
export PATH="/home/proycon/bin:/home/proycon/.cargo/bin:$PATH"
;;
mlp*)
alias lmws='source lamachine-weblamachine-activate'
alias lmws1='source /var/www/lamachine/bin/activate'
alias lm='source /vol/customopt/bin/lamachine-activate'
alias lmdev='source /vol/customopt/bin/lamachine-dev-activate'
#export LD_LIBRARY_PATH="/vol/customopt/machine-translation/lib:/vol/customopt/nlptools/lib/:$LD_LIBRARY_PATH"
BASEPATH="/home/proycon/bin:/home/proycon/.cargo/bin:/home/proycon/local/bin:/scratch/proycon/apptainer/bin:/vol/customopt/machine-translation/bin:$PATH"
#/vol/customopt/uvt-ru/bin:/vol/customopt/alpino/bin:/vol/customopt/uvt-ru/src/colibri/scripts:/vol/customopt/nlptools/bin/:/vol/customopt/nlptools/cmd/:/vol/customopt/cython3/bin/:$PATH"
export APPTAINER_CACHEDIR=/scratch/proycon/apptainer/var/apptainer/cache
export PATH=$BASEPATH
export CDPATH=.:/scratch/proycon/:/scratch/proycon/local/:/scratch/proycon/local/src/
#export PYTHONPATH="/home/proycon/:/vol/customopt/uvt-ru/lib/python2.7/site-packages/:/vol/customopt/uvt-ru/src/colibri/scripts:/vol/customopt/uvt-ru/lib/python2.7/site-packages/frog/:/vol/customopt/nlptools/stanford-corenlp-python:/vol/customopt/uvt-ru/lib/python3.2/site-packages/:/vol/customopt/python3-packages/lib/python3.2/site-packages/"
#export CLASSPATH="/vol/customopt/nlptools/stanford-corenlp-full/stanford-corenlp-1.3.4.jar:/vol/customopt/nlptools/stanford-corenlp-full/stanford-corenlp-1.3.4-models.jar:/vol/customopt/nlptools/stanford-corenlp-full/xom.jar:/vol/customopt/nlptools/stanford-corenlp-full/joda-time.jar:/vol/customopt/nlptools/stanford-corenlp-full/jollyday.jar:/vol/customopt/nlptools/javalib:."
if [ -d /scratch/proycon/tmp ]; then
export TMPDIR="/scratch/proycon/tmp"
fi
hash -d X=/scratch/proycon/
hash -d corpora=/vol/bigdata/corpora/
hash -d lm=/vol/customopt/lamachine/
hash -d lmdev=/vol/customopt/lamachine.dev/
hash -d lmsrc=/vol/customopt/lamachine/src/
hash -d mt=/vol/customopt/machine-translation/
hash -d corp=/vol/bigdata/corpora/
hash -d bd=/vol/bigdata/users/proycon/
hash -d tu=/vol/tensusers/proycon/
hash -d ws=/var/www/webservices-lst/live
umask u=rwx,g=rx,o=rx
alias aj="ssh -Y -A -t applejack /home/proycon/bin/tm"
alias _aj="ssh -Y -A -t applejack"
alias fs="ssh -Y -A -t fluttershy /home/proycon/bin/tm"
alias rr="ssh -Y -A -t rarity /home/proycon/bin/tm"
alias cl="ssh -Y -A -t cheerilee /home/proycon/bin/tm"
alias fp="ssh -Y -A -t fancypants /home/proycon/bin/tm"
alias pq="ssh -Y -A -t pipsqueak /home/proycon/bin/tm"
alias so="ssh -Y -A -t scootaloo /home/proycon/bin/tm"
alias fw="ssh -Y -A -t featherweight /home/proycon/bin/tm"
alias bf="ssh -Y -A -t blossomforth /home/proycon/bin/tm"
alias tl="ssh -Y -A -t thunderlane /home/proycon/bin/tm"
alias tw="ssh -Y -A -t twist /home/proycon/bin/tm"
;;
*)
DOMAIN=$(hostname | tr -d "\n")
case "$DOMAIN" in
anaproy|anaproy.lxd|anaproy2)
export PATH="/home/proycon/bin:/home/proycon/.cargo/bin:/home/proycon/local/bin:$PATH"
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/home/proycon/local/lib"
export PYTHONPATH="/home/proycon/work/"
export CDPATH=.:~/work:~/projects
hash -d X=/home/proycon/exp
hash -d lsrc=/home/proycon/local/src/
hash -d W=/home/proycon/work
hash -d P=/home/proycon/projects
;;
esac
;;
esac
if command -v exa > /dev/null 2>/dev/null; then
alias l='exa'
alias ll='exa -l'
else
alias l='ls'
alias ll='ls -l'
fi
if command -v bat > /dev/null 2>/dev/null; then
export PAGER="bat --style=plain --paging=always"
export BAT_PAGER="less -q"
else
export PAGER="less"
fi
alias ssha='sshcheck && ssh -A anaproy.nl'
alias wtr="curl http://wttr.in/Eindhoven"
alias wttr="curl http://wttr.in/Eindhoven"
alias weather="curl http://wttr.in/Eindhoven"
alias btc="curl eur.rate.sx/btc@30d"
cheat() {
curl https://cheat.sh/$1
}
qr() {
curl -s http://qrenco.de/$1 | cat
}
sshtunnel() {
TARGETHOST=$1
PORT=$2
ssh -N -f -L localhost:${PORT}:localhost:${PORT} $TARGETHOST
}
sshcheck() {
if [ -n "$SSH_AUTH_SOCK" ]; then
ssh-add -l > /dev/null 2> /dev/null || ssh-add
fi
true
}
gpghelp() {
echo "gpg --recv-key 8AC624881EF2AC30C0E68E2C39FE11201A31555C"
echo "echo \"your secret message here\" | gpg -e --armor -r [email protected]"
}
gpgmsg() {
if [ -n "$1" ]; then
gpg -e --armor -r $1
else
gpg -e --armor -r [email protected]
fi
}
alias dps="dirpersiststore"
alias -s txt=vim
alias -s cpp=vim
alias -s cxx=vim
alias -s h=vim
alias -s tex=vim
alias -s bib=vim
alias -s js=vim
alias -s css=vim
alias -s pdf=zathura
alias -s jpg=imv
alias -s png=imv
alias -s eps=imv
alias -s gif=imv
alias -s mp3=mpg321
alias -s ogg=play
alias -s html=firefox
function s() {
clear
for i in $(seq 0 20); do
echo "\n"
done
}
function git_prompt_info() {
ref=$(git symbolic-ref HEAD 2> /dev/null) || return
echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$ZSH_THEME_GIT_PROMPT_SUFFIX"
}
function virtualenv_prompt_info(){
[[ -n ${VIRTUAL_ENV} ]] || return
echo "${ZSH_THEME_VIRTUALENV_PREFIX:=[}(${VIRTUAL_ENV:t})${ZSH_THEME_VIRTUALENV_SUFFIX:=]}"
}
function rmd () {
pandoc -s -f gfm -H ~/dotfiles/header.sty -o /tmp/rmd.pdf $1
zathura /tmp/rmd.pdf
}
export VIRTUAL_ENV_DISABLE_PROMPT=1
export GPGKEY="8AC624881EF2AC30C0E68E2C39FE11201A31555C"
#if [ -f "${HOME}/.gpg-agent-info" ]; then
# . "${HOME}/.gpg-agent-info"
# export GPG_AGENT_INFO
# #export SSH_AUTH_SOCK
#fi
GPG_TTY=$(tty)
export GPG_TTY
if [ -z "$XDG_RUNTIME_DIR" ]; then
export XDG_RUNTIME_DIR="/tmp"
fi
if ! pgrep -u "$USER" ssh-agent > /dev/null; then
ssh-agent -t 6h > "$XDG_RUNTIME_DIR/ssh-agent.env"
fi
if [[ ! "$SSH_AUTH_SOCK" ]]; then
source "$XDG_RUNTIME_DIR/ssh-agent.env" >/dev/null
fi
export NNN_FIFO="/tmp/nnn.fifo"
export NNN_PLUG="o:fzopen;c:fcd;j:jump;p:preview-tui;i:imgview;d:dragdrop"
export BAT_THEME="gruvbox-dark"
alias nnn="nnn -e"
export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=#706060"
PANEL_FIFO=/tmp/panel-fifo
PANEL_HEIGHT=24
PANEL_FONT_FAMILY="-*-terminus-medium-r-normal-*-12-*-*-*-c-*-*-1"
export PANEL_FIFO PANEL_HEIGHT PANEL_FONT_FAMILY
DEBEMAIL="[email protected]"
DEBFULLNAME="Maarten van Gompel"
export DEBEMAIL DEBFULLNAME
#VIM mode
#bindkey -v
bindkey '^P' up-history
bindkey '^N' down-history
bindkey '^?' backward-delete-char
bindkey '^h' backward-delete-char
bindkey '^w' backward-kill-word
bindkey '^r' history-incremental-search-backward
export KEYTIMEOUT=1
#bindkey -M viins 'jj' vi-cmd-mode
if [ $TERM != "xterm-kitty" ]; then
bindkey $terminfo[khome] beginning-of-line
bindkey $terminfo[kend] end-of-line
fi
#bindkey '\e[1' beginning-of-line
#bindkey '\e[4' end-of-line
#bindkey '\e[[1' beginning-of-line
#bindkey '\e[[4' end-of-line
#bindkey '\e[A' history-substring-search-up
#bindkey '\e[B' history-substring-search-down
#bindkey '^H' history-substring-search-up
#bindkey '^[[A' history-substring-search-up
#bindkey '^[[B' history-substring-search-down
#bindkey '[C' forward-word
#bindkey '[D' backward-word
function catcsv {
sed 's/,/ ,/g' | column -t -s, "$@"
}
function lesscsv {
catcsv | less -F -S -X -K
}
function cattsv {
sed 's/,/ ,/g' | column -t -s $'\t' "$@"
}
function lesstsv {
cattsv | less -F -S -X -K
}
alias body="tail -n +2"
alias header="head -n 1"
function hutlist {
if [ -z "$1" ]; then
echo "hutlist [list] [[patchno]]">&2
return 1;
fi
list="$1"
if [ "$1" = "sxmo" ]; then
list="~mil/sxmo-devel"
elif [ "$1" = "aerc" ]; then
list="~rjarry/aerc-devel"
fi
if [ -n "$2" ]; then
PAGER=less hut lists patchset show -l "$list" "$2"
else
PAGER=less hut lists patchset list -l "$list"
fi
}
function huttodo {
if [ -z "$1" ]; then
echo "huttodo [ticketlist] [[ticketno]]">&2
return 1;
fi
tickets="$1"
if [ "$1" = "sxmo" ]; then
tickets="~mil/sxmo-tickets"
elif [ "$1" = "aerc" ]; then
tickets="~rjarry/aerc"
fi
if [ -n "$2" ]; then
PAGER=less hut todo ticket show -t "$tickets" "$2"
else
PAGER=less hut todo ticket list -t "$tickets"
fi
}
function yy() {
local tmp="$(mktemp -t "yazi-cwd.XXXXXX")"
yazi "$@" --cwd-file="$tmp"
if cwd="$(cat -- "$tmp")" && [ -n "$cwd" ] && [ "$cwd" != "$PWD" ]; then
cd -- "$cwd"
fi
rm -f -- "$tmp"
}
case $TERM in
xterm*|rxvt)
PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}\007"'
export PROMPT_COMMAND
;;
screen*|screen)
TITLE=$(hostname -s)
PROMPT_COMMAND='/bin/echo -ne "\033k${TITLE}\033\\"'
export PROMPT_COMMAND
;;
esac
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
[ -f ~/dotfiles/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ] && source ~/dotfiles/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH:$HOME/.local/bin"
unset LESS_TERMCAP_so
if [ "$(tty)" = "/dev/tty1" ]; then
exec ~/dotfiles/scripts/startriver.sh
fi