Removes duplicate fzf script.

This commit is contained in:
2024-09-24 13:01:43 -07:00
parent c34cedc66b
commit 7dbc649489
2 changed files with 2 additions and 18 deletions

View File

@@ -1,16 +0,0 @@
# To set up shell integration, add this to your shell configuration file:
# # bash
# eval "$(fzf --bash)"
# # zsh
# source <(fzf --zsh)
# # fish
# fzf --fish | source
# To use fzf in Vim, add the following line to your .vimrc:
# set rtp+=/opt/homebrew/opt/fzf
if [ -x "$(which fzf)" ]; then
source <(fzf --zsh)
fi

4
.zshrc
View File

@@ -21,12 +21,12 @@ for f in ~/.rc.d/*.sh; do
source "$f"
done
# Append personal bin to path
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# Append local personal bin to path
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi