1
0
mirror of https://github.com/dbcli/pgcli synced 2024-06-16 01:42:23 +00:00
pgcli/pgcli/pgclirc

36 lines
1.1 KiB
Plaintext
Raw Normal View History

2015-01-04 08:31:17 +00:00
# vi: ft=dosini
2014-11-27 23:02:54 +00:00
[main]
2015-01-04 08:31:17 +00:00
# Enables context sensitive auto-completion. If this is disabled the all
# possible completions will be listed.
smart_completion = True
2015-01-04 08:31:17 +00:00
# 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
2015-01-04 08:31:17 +00:00
# log_file location.
log_file = ~/.pgcli.log
# Default log level. Possible values: "CRITICAL", "ERROR", "WARNING", "INFO"
# and "DEBUG".
log_level = INFO
2015-02-12 22:38:06 +00:00
# Timing of sql statments and table rendering.
timing = True
# Table format. Possible values: psql, plain, simple, grid, fancy_grid, pipe,
# orgtbl, rst, mediawiki, html, latex, latex_booktabs.
# Recommended: psql, fancy_grid and grid.
table_format = psql
2015-02-04 07:31:35 +00:00
2015-02-12 22:38:06 +00:00
# Syntax Style. Possible values: manni, igor, xcode, vim, autumn, vs, rrt,
# native, perldoc, borland, tango, emacs, friendly, monokai, paraiso-dark,
2015-02-04 07:31:35 +00:00
# colorful, murphy, bw, pastie, paraiso-light, trac, default, fruity
2015-05-02 15:01:57 +00:00
syntax_style = default
2015-02-12 22:38:06 +00:00
# Enables vi-mode
vi = False