updated files in antidote
This commit is contained in:
parent
ab070423c4
commit
b9a71fee6b
3 changed files with 27 additions and 0 deletions
19
dot_config/zsh/aliases.zsh
Normal file
19
dot_config/zsh/aliases.zsh
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
alias cd='z'
|
||||||
|
alias grep='rg'
|
||||||
|
alias find='fd'
|
||||||
|
|
||||||
|
# make rm, cp and mv safer
|
||||||
|
alias rm='rm -i'
|
||||||
|
alias cp='cp -i'
|
||||||
|
alias mv='mv -i'
|
||||||
|
|
||||||
|
# misc aliases
|
||||||
|
alias termbin="nc termbin.com 9999"
|
||||||
|
alias ktheme='kitty +kitten themes --reload-in=all'
|
||||||
|
alias wget='wget --hsts-file="$XDG_DATA_HOME"/wget-hsts'
|
||||||
|
if (( ${+commands[nvim]} )); then alias vim="nvim"; fi
|
||||||
|
|
||||||
|
# gdb stuff
|
||||||
|
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"
|
7
dot_config/zsh/keybinds.zsh
Normal file
7
dot_config/zsh/keybinds.zsh
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
run_ranger () { echo; ranger < $TTY; zle redisplay }
|
||||||
|
zle -N run_ranger
|
||||||
|
bindkey '^f' run_ranger
|
||||||
|
|
||||||
|
pet_select () { BUFFER=$(pet search --query "$LBUFFER"); CURSOR=$#BUFFER; zle redisplay }
|
||||||
|
zle -N pet_select
|
||||||
|
bindkey '^l' pet_select
|
1
dot_config/zsh/symlink_dot_zsh_plugins.txt
Normal file
1
dot_config/zsh/symlink_dot_zsh_plugins.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
zsh_plugins.txt
|
Loading…
Add table
Reference in a new issue