If you meant a template for the configs ...
There is a "template" for every chip, located in the PBP folder.

For a 12F609, open the 12F609.inc file and you should see this ...
If you are using the default PM assembler, they are the blue ones.
If using MPASM, they are the green ones.
Code:
;****************************************************************
;*  12F609.INC                                                  *
;*                                                              *
;*  By        : Leonard Zerman, Jeff Schmoyer                   *
;*  Notice    : Copyright (c) 2007 microEngineering Labs, Inc.  *
;*              All Rights Reserved                             *
;*  Date      : 04/30/07                                        *
;*  Version   : 2.50                                            *
;*  Notes     :                                                 *
;****************************************************************
        NOLIST
    ifdef PM_USED
        LIST
        include 'M12F609.INC'	; PM header
        device  pic12F609, intrc_osc_noclkout, wdt_on, mclr_on, ioscfs_4mhz, protect_off
        XALL
        NOLIST
    else
        LIST
        LIST p = 12F609, r = dec, w = -302
        INCLUDE "P12F609.INC"	; MPASM  Header
        __config _INTRC_OSC_NOCLKOUT & _WDT_ON & _MCLRE_ON & _IOSCFS_4MHZ & _CP_OFF
        NOLIST
    endif
        LIST
For more info, see this thread ...

Presetting Configuration Fuses (PIC Defines) into your Program
http://www.picbasic.co.uk/forum/showthread.php?t=543
<br>