Wed, 25 Sep 2024 15:03:13 -0500
No LSP autostart when read-only
I think nvim actually threw out 'view' argc detection, I just use -R and alias
view to it.
220 | 1 | \set QUIET 1 |
2 | ||
3 | -- complete keywords in upper case | |
4 | \set COMP_KEYWORD_CASE upper | |
5 | ||
6 | -- automatically use expanded display | |
7 | \x auto | |
8 | ||
9 | -- display nulls as... | |
10 | \pset null ยค | |
11 | ||
12 | -- Verbose error reports. | |
13 | \set VERBOSITY verbose | |
14 | ||
15 | -- Use a separate history file per-database, no dupes | |
16 | \set HISTFILE ~/.psql_history- :DBNAME | |
17 | \set HISTCONTROL ignoredups | |
18 | ||
19 | \unset QUIET |