atareao revised this gist 4 days ago. Go to revision
1 file changed, 37 insertions
pgclirc(file created)
| @@ -0,0 +1,37 @@ | |||
| 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 | |
Newer
Older