A text search configuration is a grouping of configuration objects: parsers, templates, and dictionaries. As far as I can tell, the only built-in configuration options are language ones, such as English or Finnish.
You can view the list of configurations in your database using the \dF command in the psql command-line tool or using the query: select * from pg_catalog.pg_ts_config;
Regarding the βplain textβ configuration (# 2), I'm not sure what you need, but look at creating a custom dictionary. Perhaps start with the built-in "simple" dictionary and delete the stop words? COMMENT ON TEXT SEARCH DICTIONARY simple IS 'simple dictionary: just lower case and check for stopword';
Link: Configurations
source share