Set path environment variable permanently
1
set -U fish_user_paths /usr/local/bin $fish_user_paths
This will prepend /usr/local/bin permanently to your path, and will affect the current session and all future instances too because the -U argument will make the variable universal.