From f2b0f37f96cfd0dd13cf03f3dea83a5c2e72b519 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sat, 30 Jul 2022 20:00:21 -0500 Subject: [PATCH] feat: use xdg for fzf --- .config/zsh/config/profile/profile/env.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/zsh/config/profile/profile/env.zsh b/.config/zsh/config/profile/profile/env.zsh index 569f698..3fb5ed6 100644 --- a/.config/zsh/config/profile/profile/env.zsh +++ b/.config/zsh/config/profile/profile/env.zsh @@ -9,7 +9,7 @@ export ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE=2 export ZSH_AUTOSUGGEST_STRATEGY=(history completion) ### FZF ### -[[ -f "${HOME}/.fzf.zsh" ]] && source "${HOME}/.fzf.zsh" +[[ -f "${HOME}/.config/fzf/fzf.zsh" ]] && source "${HOME}/.config/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}"