From 9ab94fecb2b9183a10e9d4964338c58f724cba39 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Thu, 23 Jan 2025 13:31:15 -0800 Subject: [PATCH] Fix ported bash config --- assets/default/dotfiles/bash_profile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/default/dotfiles/bash_profile b/assets/default/dotfiles/bash_profile index 1c1dbe1..04a3b8e 100644 --- a/assets/default/dotfiles/bash_profile +++ b/assets/default/dotfiles/bash_profile @@ -90,7 +90,7 @@ if fc-list -q 'Symbols Nerd Font'; then fi # FZF -if[ -f ~/.fzf.bash ]; then +if [ -f ~/.fzf.bash ]; then source ~/.fzf.bash elif fzf --bash &> /dev/null; then source <(fzf --bash) @@ -107,7 +107,7 @@ else # Key bindings source $fzf_shell_path/key-bindings.bash - end + fi fi if type rg &> /dev/null; then export FZF_DEFAULT_COMMAND='rg --files'