fix: problems with missing paths to homebrew

This commit is contained in:
Stefan Imhoff
2023-04-14 08:30:53 +02:00
parent 9ece7cdef4
commit 0f48361f27
2 changed files with 7 additions and 3 deletions

View File

@@ -10,9 +10,6 @@ if status --is-interactive
source "$BASE16_SHELL/profile_helper.fish"
end
# asdf Version Manager
source "$(brew --prefix)/opt/asdf/libexec/asdf.fish"
# SSH
set -x SSH_AUTH_SOCK $HOME/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh
@@ -23,6 +20,7 @@ set -gx PATH "$VOLTA_HOME/bin" $PATH
# Neovim as default editor
set -U EDITOR nvim
set PATH /opt/homebrew/bin $PATH
set PATH ~/.dotfiles/bin $PATH
set PATH ~/.dotfiles/private/bin $PATH
@@ -34,6 +32,9 @@ set --export RIPGREP_CONFIG_PATH $HOME/.ripgreprc
set --export GIT_EDITOR nvim
set --export EDITOR nvim
# asdf Version Manager
source (brew --prefix)/opt/asdf/libexec/asdf.fish
# FZF
set FD_OPTIONS "--follow --exclude .git --exclude node_modules"