It shouldn't need any files from mplab/mplabx.
Config settings vary from device to device. If you open the device include file (18F43K22.bas) you can see your choices.
(in the Code Explorer pane of the SF IDE, clicking on 'Includes | 18F43K22' should open the file in an editor window).
Scroll down to the section
There are some defaults set in that file, but if you add your settings to your main program file those will over-ride the defaults in the device file.
There is also a ConfigGenerator tool that can help out... main IDE menu 'Plugin | ConfigGenerator'
Config settings vary from device to device. If you open the device include file (18F43K22.bas) you can see your choices.
(in the Code Explorer pane of the SF IDE, clicking on 'Includes | 18F43K22' should open the file in an editor window).
Scroll down to the section
Code:
// configuration fuses...
public config
FOSC(FOSC) = [LP, XT, HSHP, HSMP, ECHP, ECHPIO6, RC, RCIO6, INTIO67, INTIO7, ECMP, ECMPIO6, ECLP, ECLPIO6],
PLLCFG(PLLCFG) = [OFF, ON],
PRICLKEN(PRICLKEN) = [OFF, ON],
FCMEN(FCMEN) = [OFF, ON],
There is also a ConfigGenerator tool that can help out... main IDE menu 'Plugin | ConfigGenerator'