Add lib_extra_dirs to every project by default

Hello
I use VSC + PlatformIO and I need to add in every project my default “Arduino_secrets.h” who stored on my disk
Now I add every time manually to every platformio.ini string like this

build_flags = -I/Users/istitch07/Documents/arduino/include

but maybe its possible to configure “global” for create every new project with this sting in platformio.ini?

Just install it as a global library. Create /Users/<user>/.platformio/lib/<some folder name> and in there your Arduino_secrets.h, then it will be available for every project, just do #include <Arduino_secrets.h> in the code.

Oh, great. Thank you
I make hardlink on original file because original in cloud dir and syncing on all my computers. Its worked! Thank you again