updated antidote in prep for usage on laptop

This commit is contained in:
eeleater 2024-08-16 00:07:37 +02:00
parent 48b4d418af
commit b111001de3
4 changed files with 15 additions and 27 deletions

View file

@ -19,3 +19,12 @@ if (( ${+commands[nvim]} )); then alias vim="nvim"; fi
alias peda="gdb -iex 'source /usr/share/peda/peda.py' --nh -q"
alias gef="gdb -iex 'source /usr/share/gef/gef.py' --nh -q"
alias pwndbg="gdb -iex 'source /usr/share/pwndbg/gdbinit.py' --nh -q"
# ranger as cli file manager
run_ranger () {
echo
ranger < $TTY
zle redisplay
}
zle -N run_ranger
bindkey '^f' run_ranger