pgclirc
· 850 B · Text
Raw
# -*- conf -*-
# ~/.config/pgcli/config (Linux)
# Configuración completa de pgcli 4.5.0
[main]
smart_completion = True
fuzzy_completion = True
popup_color = Blue
completion_menu_rows = 10
table_format = psql
multi_line = False
vi = False
editor = vim
keyring = True
row_limit = 1000
less_chatty = False
warn = True
pager = less -SRXF
timing = True
syntax_style = monokai
case_keywords = upper
auto_vertical = True
expanded = False
history_limit = 5000
[alias_dsn]
local = postgresql://usuario@localhost:5432/mi_bd
dev = postgresql://dev_user:password@dev-server:5432/dev_db
prod = postgresql://admin@prod.empresa.com:5432/production?sslmode=require
stats = postgresql://lector@localhost:5432/data_warehouse
[colors]
keyword = \\x1b[38;5;141m
string = \\x1b[38;5;215m
number = \\x1b[38;5;83m
comment = \\x1b[38;5;244m
punctuation = \\x1b[38;5;252m
| 1 | # -*- conf -*- |
| 2 | # ~/.config/pgcli/config (Linux) |
| 3 | # Configuración completa de pgcli 4.5.0 |
| 4 | |
| 5 | [main] |
| 6 | smart_completion = True |
| 7 | fuzzy_completion = True |
| 8 | popup_color = Blue |
| 9 | completion_menu_rows = 10 |
| 10 | table_format = psql |
| 11 | multi_line = False |
| 12 | vi = False |
| 13 | editor = vim |
| 14 | keyring = True |
| 15 | row_limit = 1000 |
| 16 | less_chatty = False |
| 17 | warn = True |
| 18 | pager = less -SRXF |
| 19 | timing = True |
| 20 | syntax_style = monokai |
| 21 | case_keywords = upper |
| 22 | auto_vertical = True |
| 23 | expanded = False |
| 24 | history_limit = 5000 |
| 25 | |
| 26 | [alias_dsn] |
| 27 | local = postgresql://usuario@localhost:5432/mi_bd |
| 28 | dev = postgresql://dev_user:password@dev-server:5432/dev_db |
| 29 | prod = postgresql://admin@prod.empresa.com:5432/production?sslmode=require |
| 30 | stats = postgresql://lector@localhost:5432/data_warehouse |
| 31 | |
| 32 | [colors] |
| 33 | keyword = \\x1b[38;5;141m |
| 34 | string = \\x1b[38;5;215m |
| 35 | number = \\x1b[38;5;83m |
| 36 | comment = \\x1b[38;5;244m |
| 37 | punctuation = \\x1b[38;5;252m |