diff --git a/zsh/zsh_plugins.txt b/zsh/zsh_plugins.txt index 59adbd7..c0a2350 100644 --- a/zsh/zsh_plugins.txt +++ b/zsh/zsh_plugins.txt @@ -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 diff --git a/zsh/zshrc b/zsh/zshrc index d0e122b..fcc0653 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -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)) }