Hi,
If you have PBP3 you should enclose your config directive in a #CONFIG / #ENDCONFIG block. When such a block is found in the PBP source file it will replace the default config in the device specific include file without the need to edit that file. Example:
Code:
#CONFIG
      __config _XT_OSC & _WDT_OFF & _MCLRE_OFF & _LVP_OFF & _CP_OFF
#ENDCONFIG
Note the double underscore in __config and make sure to indent it.

/Henrik.