From ded6e9af8e9b208d9b67bff40de86aac23b98916 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Fri, 12 Aug 2022 18:55:08 -0500 Subject: [PATCH] fix(zsh): reenable fzf --- dots/.config/zsh/config/profile/profile/env.zsh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/dots/.config/zsh/config/profile/profile/env.zsh b/dots/.config/zsh/config/profile/profile/env.zsh index 06c3baed..432ce32a 100644 --- a/dots/.config/zsh/config/profile/profile/env.zsh +++ b/dots/.config/zsh/config/profile/profile/env.zsh @@ -10,11 +10,7 @@ export ZSH_AUTOSUGGEST_STRATEGY=(history completion) ### FZF ### -zvm_after_init () -{ - [[ -r "${XDG_CONFIG_HOME}/fzf/fzf.zsh" ]] && source "${XDG_CONFIG_HOME}/fzf/fzf.zsh" -} - +[[ -r "${XDG_CONFIG_HOME}/fzf/fzf.zsh" ]] && source "${XDG_CONFIG_HOME}/fzf/fzf.zsh" export FZF_DEFAULT_COMMAND='fd --hidden --exclude .git --color=always' export FZF_DEFAULT_OPTS="--height=80% --layout=reverse --info=inline --border --margin=1 --ansi" export FZF_CTRL_T_COMMAND="${FZF_DEFAULT_COMMAND}"