[zsh] fix completions and fzf-tab
This commit is contained in:
parent
0adb54b473
commit
086b482cea
2 changed files with 5 additions and 5 deletions
|
@ -21,14 +21,10 @@ export READER=mupdf
|
||||||
#THEME
|
#THEME
|
||||||
source $ZDOTDIR/themes/gruvbox_dark.zsh
|
source $ZDOTDIR/themes/gruvbox_dark.zsh
|
||||||
|
|
||||||
#Completions
|
|
||||||
autoload -U compinit && compinit
|
|
||||||
fpath+=$ZDOTDIR/plugins/zsh-completions/src
|
|
||||||
|
|
||||||
#Prompt
|
#Prompt
|
||||||
fpath+=$ZDOTDIR/prompts/pure
|
fpath+=$ZDOTDIR/prompts/pure
|
||||||
autoload -U promptinit; promptinit
|
autoload -U promptinit; promptinit
|
||||||
PURE_GIT_PULL=0
|
export PURE_GIT_PULL=0
|
||||||
prompt pure
|
prompt pure
|
||||||
|
|
||||||
source $ZDOTDIR/functions.zsh
|
source $ZDOTDIR/functions.zsh
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
|
#Completions
|
||||||
ZSH_AUTOSUGGEST_STRATEGY=(match_prev_cmd history completion)
|
ZSH_AUTOSUGGEST_STRATEGY=(match_prev_cmd history completion)
|
||||||
|
zstyle ':completion:*' rehash true
|
||||||
|
fpath+=$ZDOTDIR/plugins/zsh-completions/src
|
||||||
|
autoload -U compinit && compinit
|
||||||
source $ZDOTDIR/plugins/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh
|
source $ZDOTDIR/plugins/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh
|
||||||
|
|
||||||
source $ZDOTDIR/plugins/zsh-history-substring-search/zsh-history-substring-search.plugin.zsh
|
source $ZDOTDIR/plugins/zsh-history-substring-search/zsh-history-substring-search.plugin.zsh
|
||||||
|
|
Loading…
Reference in a new issue