If you're trying to use the new style CONFIG with PBP, you should be aware that it can't be placed in your program.
It has to be the first thing loaded, which means it must be in a file that gets loaded before the PBP library. (Not fun)

The original __CONFIG statements are still the way to set configs with PBP.
In other words, please delete what you just posted from your program, and follow the suggested __CONFIG style.
Also, noticed that your oscillator settings were HS instead of XT.
HS mode will always drive a crystal that might qualify for XT mode. The reverse is not always true. I err on the Cautious side.