Add initial legacy configuration
This commit is contained in:
parent
febfe1d970
commit
db07652d99
64 changed files with 3287 additions and 13 deletions
21
home-modules/applications/psql.nix
Normal file
21
home-modules/applications/psql.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ ... }:
|
||||
{
|
||||
home.file.".psqlrc".text = ''
|
||||
\set QUIET 1
|
||||
|
||||
\pset linestyle unicode
|
||||
\pset border 2
|
||||
|
||||
\set null [null]
|
||||
\set COMP_KEYWORD_CASE upper
|
||||
\set ON_ERROR_ROLLBACK interactive
|
||||
\set PROMPT1 '%[%033[1m%]%M/%/%R%[%033[0m%]%# '
|
||||
\set PROMPT2 ''''
|
||||
\set VERBOSITY verbose
|
||||
\timing
|
||||
\x auto
|
||||
|
||||
\unset QUIET
|
||||
\conninfo
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue