Can someone please tell me what\'s the correct way to set a bunch of environment variables in the fish shell?
In my .config/fish/config.fish file, I have a function to s
The variables you are declaring are keep in a local scope inside your function.
Use:
set -g -x
Here "g" is for global.
g