Merge branch 'main' of git.its-et.me:etorres/dotfiles

This commit is contained in:
2025-08-24 16:34:01 -07:00
2 changed files with 3 additions and 3 deletions

View File

@@ -4,8 +4,8 @@ fzf_version="$(fzf --version | cut -d ' ' -f1 | tr -d '[:space:]')"
# Auto-completion
# ---------------
[[ $- == *i* ]] && source "/usr/local/Cellar/fzf/${fzf_version}/shell/completion.zsh"
[[ $- == *i* ]] && source "/opt/homebrew/Cellar/fzf/${fzf_version}/shell/completion.zsh"
# Key bindings
# ------------
source "/usr/local/Cellar/fzf/${fzf_version}/shell/key-bindings.zsh"
source "/opt/homebrew/Cellar/fzf/${fzf_version}/shell/key-bindings.zsh"

View File

@@ -1,4 +1,4 @@
# PATH variable configuration
path=("/usr/local/sbin" "${HOME}/Scripts/macOS Helpers" "${HOME}/.local/bin" $path)
path=("/usr/local/sbin" "$(brew --prefix coreutils)/libexec/gnubin" "$(brew --prefix gnu-sed)/libexec/gnubin" "${HOME}/Scripts/macOS Helpers" "${HOME}/.local/bin" $path)
export PATH