From 50aa02fab7fcad27ca8336f51d70fd4593202158 Mon Sep 17 00:00:00 2001 From: Bartek Stalewski Date: Tue, 4 May 2021 14:26:56 +0200 Subject: [PATCH] Important typo. --- zsh/fzf.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zsh/fzf.zsh b/zsh/fzf.zsh index 9c8bbe3..fd9c2c4 100644 --- a/zsh/fzf.zsh +++ b/zsh/fzf.zsh @@ -4,10 +4,10 @@ export FZF_CTRL_T_COMMAND='fd -H -L --ignore-file ~/.local/settings/fd' export FZF_DEFAULT_OPTS="--multi -e --ansi --layout=reverse --preview='bat --color=always --tabs=2 --style=plain --theme=Monokai\ Extended\ Bright {}'" export FZF_CTRL_R_OPTS="-e --ansi --layout=reverse --preview=''" _fzf_compgen_path() { - fd -H -L --ignore-file ~/local/settings/fd . "$1" + fd -H -L --ignore-file ~/.local/settings/fd . "$1" } _fzf_compgen_dir() { - fd -H -L --ignore-file ~/local/settings/fd --type d . "$1" + fd -H -L --ignore-file ~/.local/settings/fd --type d . "$1" } # heavily inspired (and sometimes stolen from): https://github.com/wfxr/forgit.git