Update .config/sheldon/plugins.toml

Update .config/zsh/env.zsh
Add .config/zsh/files/functions.zsh
Remove .config/zsh/files/keybinds.zsh
Remove .config/zsh/files/transfer.zsh
Update .config/zsh/rc.zsh
This commit is contained in:
eeleater 2022-12-20 16:45:56 +01:00
parent 27a779ca15
commit a5c3567d85
6 changed files with 47 additions and 50 deletions

View file

@ -0,0 +1,15 @@
pet_select () {
BUFFER=$(pet search --query "$LBUFFER")
CURSOR=$#BUFFER
zle redisplay
}
zle -N pet_select
bindkey '^l' pet_select
run_ranger () {
echo
ranger < $TTY
zle redisplay
}
zle -N run_ranger
bindkey '^f' run_ranger