This commit is contained in:
Leon Kowarschick 2024-04-12 18:20:04 +02:00
parent 468e839512
commit ef3f4dd248
Signed by: ElKowar
GPG key ID: 72C759DA738DE3A2
3 changed files with 14 additions and 14 deletions

View file

@ -1,4 +1,5 @@
set -g mouse on
set -sg escape-time 0
unbind-key -a
set -g @plugin 'tmux-plugins/tpm'

View file

@ -47,7 +47,7 @@ compinit -C
#autoload -Uz compinit
#compinit
# zinit light "Aloxaf/fzf-tab"
zinit light "Aloxaf/fzf-tab"
zinit wait lucid for \
"zsh-users/zsh-history-substring-search" \
@ -63,7 +63,7 @@ zinit wait lucid for \
clear-keybinds
# load more stuff
# source "$ZDOTDIR/fzf-tab.zsh"
source "$ZDOTDIR/fzf-tab.zsh"
source "$ZDOTDIR/keybinds.zsh"
unalias zi

View file

@ -2,19 +2,18 @@
FZF_TAB_COMMAND=(
fzf
--ansi
--expect='$continuous_trigger' # For continuous completion
'--color=hl:$(( $#headers == 0 ? 108 : 255 ))'
--nth=2,3 --delimiter='\x00' # Don't search prefix
--layout=reverse --height="''${FZF_TMUX_HEIGHT:=50%}"
--tiebreak=begin -m --bind=tab:down,btab:up,change:top,ctrl-space:toggle --cycle
'--query=$query' # $query will be expanded to query string at runtime.
'--header-lines=$#headers' # $#headers will be expanded to lines of headers at runtime
#--ansi
#--expect='$continuous_trigger' # For continuous completion
#'--color=hl:$(( $#headers == 0 ? 108 : 255 ))'
#--nth=2,3 --delimiter='\x00' # Don't search prefix
#--layout=reverse --height="''${FZF_TMUX_HEIGHT:=50%}"
#--tiebreak=begin -m --bind=tab:down,btab:up,change:top,ctrl-space:toggle --cycle
#'--query=$query' # $query will be expanded to query string at runtime.
#'--header-lines=$#headers' # $#headers will be expanded to lines of headers at runtime
)
zstyle ':fzf-tab:*' fzf-command $FZF_TAB_COMMAND
zstyle ':fzf-tab:*' fzf-command "fzf"
#zstyle ':fzf-tab:*' fzf-command $FZF_TAB_COMMAND
zstyle ':completion:complete:*:options' sort false
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
zstyle ':fzf-tab:complete:_zlua:*' query-string input
zstyle ':fzf-tab:complete:*:*' fzf-preview '/home/leon/scripts/preview.sh $realpath'
zstyle ':fzf-tab:complete:*:*' fzf-preview '$HOME/scripts/preview.sh $realpath'