xenoterracide / notes

mostly notes for linux commands... and other things linux

This URL has Read+Write access

notes / psql
100644 6 lines (4 sloc) 0.185 kb
1
2
3
4
5
6
# to use syntax highlighting in psql with vim
export PSQL_EDITOR='vim -c "set ft=sql"'
 
# to set the search_path in psql an example
alter user webdev set search_path to "$user",hydra;