mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-05 19:02:24 +00:00
Stuff
This commit is contained in:
parent
468e839512
commit
ef3f4dd248
3 changed files with 14 additions and 14 deletions
|
@ -1,4 +1,5 @@
|
|||
set -g mouse on
|
||||
set -sg escape-time 0
|
||||
unbind-key -a
|
||||
|
||||
set -g @plugin 'tmux-plugins/tpm'
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue