config.ini
· 1.5 KiB · INI
Raw
# 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"
1 | # vi: ft=dosini |
2 | [main] |
3 | |
4 | # Multi-line mode allows breaking up the sql statements into multiple lines. If |
5 | # this is set to True, then the end of the statements must have a semi-colon. |
6 | # If this is set to False then sql statements can't be split into multiple |
7 | # lines. End of line (return) is considered as the end of the statement. |
8 | multi_line = False |
9 | |
10 | # Default pager. |
11 | # By default '$PAGER' environment variable is used |
12 | pager = less -SRXF |
13 | |
14 | # Table format. Possible values: |
15 | # ascii, double, github, psql, plain, simple, grid, fancy_grid, pipe, orgtbl, |
16 | # rst, mediawiki, html, latex, latex_booktabs, textile, moinmoin, jira, |
17 | # vertical, tsv, csv. |
18 | # Recommended: ascii |
19 | table_format = psql_unicode |
20 | |
21 | # Syntax coloring style. Possible values (many support the "-dark" suffix): |
22 | # manni, igor, xcode, vim, autumn, vs, rrt, native, perldoc, borland, tango, emacs, |
23 | # friendly, monokai, paraiso, colorful, murphy, bw, pastie, paraiso, trac, default, |
24 | # fruity. |
25 | # Screenshots at http://mycli.net/syntax |
26 | syntax_style = pastie-dark |
27 | |
28 | # Enabling this option will show the suggestions in a wider menu. Thus more items are suggested. |
29 | wider_completion_menu = True |
30 | |
31 | # keyword casing preference. Possible values "lower", "upper", "auto" |
32 | keyword_casing = upper |
33 | |
34 | # disabled pager on startup |
35 | enable_pager = True |
36 | |
37 | # Startup commands |
38 | # litecli commands or sqlite commands to be executed on startup. |
39 | # some of them will require you to have a database attached. |
40 | # they will be executed in the same order as they appear in the list. |
41 | [startup_commands] |
42 | commands = ".tables" |