# vi: ft=dosini [main] # Multi-line mode allows breaking up the sql statements into multiple lines. If # this is set to True, then the end of the statements must have a semi-colon. # If this is set to False then sql statements can't be split into multiple # lines. End of line (return) is considered as the end of the statement. multi_line = False # Default pager. # By default '$PAGER' environment variable is used pager = less -SRXF # Table format. Possible values: # ascii, double, github, psql, plain, simple, grid, fancy_grid, pipe, orgtbl, # rst, mediawiki, html, latex, latex_booktabs, textile, moinmoin, jira, # vertical, tsv, csv. # Recommended: ascii table_format = psql_unicode # Syntax coloring style. Possible values (many support the "-dark" suffix): # manni, igor, xcode, vim, autumn, vs, rrt, native, perldoc, borland, tango, emacs, # friendly, monokai, paraiso, colorful, murphy, bw, pastie, paraiso, trac, default, # fruity. # Screenshots at http://mycli.net/syntax syntax_style = pastie-dark # Enabling this option will show the suggestions in a wider menu. Thus more items are suggested. wider_completion_menu = True # keyword casing preference. Possible values "lower", "upper", "auto" keyword_casing = upper # disabled pager on startup enable_pager = True # Startup commands # litecli commands or sqlite commands to be executed on startup. # some of them will require you to have a database attached. # they will be executed in the same order as they appear in the list. [startup_commands] commands = ".tables"