Shellcheck compliance.

This commit is contained in:
Bartek Stalewski 2024-10-15 00:44:53 +02:00
parent 689a752a94
commit 58ed90e705
No known key found for this signature in database
6 changed files with 34 additions and 32 deletions

View file

@ -9,12 +9,12 @@ if [[ $(command -v fzf) ]]; then
--border=none --preview=sharp --layout=reverse
--prompt="> " --marker=">" --separator="" --scrollbar="│"
'
export FZF_DEFAULT_OPTS=$FZF_COLORS" --multi -e --ansi --preview='bat --color=always --tabs=2 --style=plain --theme=Monokai\ Extended\ Bright {}'"
export FZF_CTRL_R_OPTS=$FZF_COLORS" -e --ansi --preview=''"
export FZF_DEFAULT_OPTS=${FZF_COLORS}" --multi -e --ansi --preview='bat --color=always --tabs=2 --style=plain --theme=Monokai\ Extended\ Bright {}'"
export FZF_CTRL_R_OPTS=${FZF_COLORS}" -e --ansi --preview=''"
_fzf_compgen_path() {
fd -H -L --ignore-file ~/.local/config/fd . "$1"
fd -H -L --ignore-file "${HOME}/.local/config/fd" . "$1"
}
_fzf_compgen_dir() {
fd -H -L --ignore-file ~/.local/config/fd --type d . "$1"
fd -H -L --ignore-file "${HOME}/.local/config/fd" --type d . "$1"
}
fi