indexed_search settings via typoscript on TYPO3 6.1

you can set the indexed search in your typoscript setup template:

orignal settings in typo3/sysext/indexed_search/ext_typoscript_setup.txt:
[js]
plugin.tx_indexedsearch {
show {
rules = 1
parsetimes = 0
L2sections = 0
L1sections = 1
LxALLtypes = 0
clearSearchBox = 0
clearSearchBox.enableSubSearchCheckBox = 0
forbiddenRecords = 0
alwaysShowPageLinks = 0
advancedSearchLink = 1
resultNumber = 0
mediaList =
}
}
[/js]

my settings in typoscript template (setup):
[js]
plugin.tx_indexedsearch {
show {
rules = 0
parsetimes = 1
clearSearchBox = 1
alwaysShowPageLinks = 1
advancedSearchLink = 0
resultNumber = 1
}
}
[/js]