Always try to run discord; update to configs
This commit is contained in:
Binary file not shown.
@ -25,7 +25,7 @@ multi_line_mode = psql
|
||||
# Destructive warning mode will alert you before executing a sql statement
|
||||
# that may cause harm to the database such as "drop table", "drop database"
|
||||
# or "shutdown".
|
||||
destructive_warning = True
|
||||
destructive_warning = False
|
||||
|
||||
# Enables expand mode, which is similar to `\x` in psql.
|
||||
expand = False
|
||||
@ -90,6 +90,9 @@ timing = True
|
||||
# ascii, double, github, orgtbl, rst, mediawiki, html, latex, latex_booktabs,
|
||||
# textile, moinmoin, jira, vertical, tsv, csv.
|
||||
# Recommended: psql, fancy_grid and grid.
|
||||
|
||||
#table_format = csv
|
||||
#table_format = grid
|
||||
table_format = vertical
|
||||
|
||||
# Syntax Style. Possible values: manni, igor, xcode, vim, autumn, vs, rrt,
|
||||
@ -101,7 +104,7 @@ syntax_style = default
|
||||
# When Vi mode is enabled you can use modal editing features offered by Vi in the REPL.
|
||||
# When Vi mode is disabled emacs keybindings such as Ctrl-A for home and Ctrl-E
|
||||
# for end are available in the REPL.
|
||||
vi = False
|
||||
vi = True
|
||||
|
||||
# Error handling
|
||||
# When one of multiple SQL statements causes an error, choose to either
|
||||
@ -113,7 +116,7 @@ on_error = STOP
|
||||
row_limit = 1000
|
||||
|
||||
# Skip intro on startup and goodbye on exit
|
||||
less_chatty = False
|
||||
less_chatty = True
|
||||
|
||||
# Postgres prompt
|
||||
# \t - Current date and time
|
||||
@ -127,13 +130,13 @@ less_chatty = False
|
||||
# \n - Newline
|
||||
# \dsn_alias - name of dsn alias if -D option is used (empty otherwise)
|
||||
# \x1b[...m - insert ANSI escape sequence
|
||||
prompt = '\u@\h:\d> '
|
||||
prompt = '\d \# '
|
||||
|
||||
# Number of lines to reserve for the suggestion menu
|
||||
min_num_menu_lines = 4
|
||||
|
||||
# Character used to left pad multi-line queries to match the prompt size.
|
||||
multiline_continuation_char = ''
|
||||
multiline_continuation_char = '.'
|
||||
|
||||
# The string used in place of a null value.
|
||||
null_string = '<null>'
|
||||
|
Reference in New Issue
Block a user