Wonderful. Also note that psql can store settings in `~/.psqlrc`, so you can set settings there that survive sessions. For instance, in that file, you can have:
```
-- Extended display when it makes sense.
\x auto
-- Always time.
\timing
```
I also set `application_name` there. This lets others know I am connected.
```
-- Extended display when it makes sense.
\x auto
-- Always time.
\timing
```
I also set `application_name` there. This lets others know I am connected.