More zsh stuff

This commit is contained in:
Anthony Cicchetti 2019-10-14 15:46:38 -04:00
parent 6a45373b7a
commit 082509b402
2 changed files with 7 additions and 19 deletions

View file

@ -1,7 +1,14 @@
robbyrussell/oh-my-zsh path:plugins/git
robbyrussell/oh-my-zsh path:plugins/vi-mode
robbyrussell/oh-my-zsh path:plugins/fzf
robbyrussell/oh-my-zsh path:plugins/gitignore
robbyrussell/oh-my-zsh path:plugins/magic-enter
robbyrussell/oh-my-zsh path:plugins/pass
robbyrussell/oh-my-zsh path:plugins/ripgrep
zsh-users/zsh-syntax-highlighting
zsh-users/zsh-completions
ress997/zsh-completions-anyenv
Tarrasch/zsh-bd

View file

@ -78,25 +78,6 @@ compctl -K _send_to_pane send-to-pane
# the following lines sourced from the fzf distribution files
export FZF_TMUX=1
fzf-history-widget() {
local selected num
setopt localoptions noglobsubst noposixbuiltins pipefail 2> /dev/null
selected=( $(fc -rl 1 |
FZF_DEFAULT_OPTS="--height ${FZF_TMUX_HEIGHT:-40%} $FZF_DEFAULT_OPTS -n2..,.. --tiebreak=index --bind=ctrl-r:toggle-sort $FZF_CTRL_R_OPTS --query=${(qqq)LBUFFER} +m" fzf-tmux -d40%) )
local ret=$?
if [ -n "$selected" ]; then
num=$selected[1]
if [ -n "$num" ]; then
zle vi-fetch-history -n $num
fi
fi
zle reset-prompt
return $ret
}
zle -N fzf-history-widget
bindkey '^R' fzf-history-widget
### END FZF DISTRIBUTION SOURCE
function _just() {
reply=($(just --summary))
}