config fish M2

This commit is contained in:
Jérémie Ducastel
2025-06-27 22:57:29 +02:00
parent c306f83b12
commit 1a86c45178
5 changed files with 84 additions and 0 deletions

View File

@ -0,0 +1,25 @@
# ===== homebrew
if test -d /opt/homebrew # Homebrew is installed on MacOS
# rendre ses commandes disponibles
/opt/homebrew/bin/brew shellenv | source
fish_add_path /opt/homebrew/bin
end
# ===== python
# fork() sur ARM64
set -gx OBJC_DISABLE_INITIALIZE_FORK_SAFETY YES
# ===== MySQL
export DYLD_LIBRARY_PATH=/opt/homebrew/mysql/lib/
# For compilers to find mysql-client you may need to set:
set -gx LDFLAGS "-L/opt/homebrew/opt/mysql-client/lib"
set -gx CPPFLAGS "-I/opt/homebrew/opt/mysql-client/include"
# For pkg-config to find mysql-client you may need to set:
set -gx PKG_CONFIG_PATH "/opt/homebrew/opt/mysql-client/lib/pkgconfig"
# =====