Compare commits

...

2 Commits

Author SHA1 Message Date
8d02d2e6f7 add pspgcong 2022-04-27 20:29:10 -04:00
66fcf702d4 install and setup pspg and make psql default pager 2022-04-27 20:28:56 -04:00
3 changed files with 50 additions and 5 deletions

View File

@ -121,6 +121,7 @@ PAGER="less"
LESS="-S" LESS="-S"
export PG="psql -U ptrowbridge -d ubm -p 54329 -h hptrow.me" export PG="psql -U ptrowbridge -d ubm -p 54329 -h hptrow.me"
export PGD="psql -U ptrowbridge -d ubm -p 54339 -h hptrow.me" export PGD="psql -U ptrowbridge -d ubm -p 54339 -h hptrow.me"
export PSQL_PAGER="pspg"
# GOPATH=$HOME/go # GOPATH=$HOME/go
# function _update_ps1() { # function _update_ps1() {

34
.pspgconf Normal file
View File

@ -0,0 +1,34 @@
ascii_menu = false
bold_labels = false
bold_cursor = false
ignore_case = false
ignore_lower_case = false
no_cursor = false
no_sound = false
no_mouse = false
less_status_bar = false
no_highlight_search = false
no_highlight_lines = false
force_uniborder = false
show_rownum = false
without_commandbar = false
without_topbar = false
vertical_cursor = false
on_sigint_exit = false
no_sigint_search_reset = false
double_header = false
quit_on_f3 = false
pgcli_fix = false
xterm_mouse_mode = true
show_scrollbar = true
menu_always = false
empty_string_is_null = true
last_row_search = true
progressive_load_mode = true
highlight_odd_rec = false
hide_header_line = false
theme = 17
border_type = 2
default_clipboard_format = 0
clipboard_app = 0
hist_size = 500

View File

@ -5,7 +5,7 @@
dir=~/dot_config dir=~/dot_config
backup=~/dot_config_backup backup=~/dot_config_backup
files=".bashrc .vimrc .tmux.conf .psqlrc .gitconfig .inputrc" files=".bashrc .vimrc .tmux.conf .psqlrc .gitconfig .inputrc .pspgconf"
#-------------------------------------------------install debian tooling----------------------------------------------------------------------------------- #-------------------------------------------------install debian tooling-----------------------------------------------------------------------------------
@ -14,17 +14,17 @@ if [ "$(dpkg-query -W -f='${Status}' "curl" 2>/dev/null | grep -c "ok installed"
then then
echo "curl already installed" echo "curl already installed"
else else
echo "installing curl" echo "installing curl..."
apt update -q4 apt update -q4
apt install curl -y apt install curl -y
fi fi
#----------vim----------- #----------vim-----------
if [ "$(dpkg-query -W -f='${Status}' "curl" 2>/dev/null | grep -c "ok installed")" == "1" ] if [ "$(dpkg-query -W -f='${Status}' "vim" 2>/dev/null | grep -c "ok installed")" == "1" ]
then then
echo "vim already installed" echo "vim already installed"
else else
echo "installing vim" echo "installing vim..."
apt update -q4 apt update -q4
apt install vim -y apt install vim -y
fi fi
@ -34,11 +34,21 @@ if [ "$(dpkg-query -W -f='${Status}' "tmux" 2>/dev/null | grep -c "ok installed"
then then
echo "tmux already installed" echo "tmux already installed"
else else
echo "installing tmux" echo "installing tmux..."
apt update -q4 apt update -q4
apt install tmux -y apt install tmux -y
fi fi
#----------pspg-----------
if [ "$(dpkg-query -W -f='${Status}' "pspg" 2>/dev/null | grep -c "ok installed")" == "1" ]
then
echo "pspg already installed"
else
echo "installing pspg..."
apt update -q4
apt install pspg -y
fi
#------------------------------------------------ create the resore directory if it doesn't already exist-------------------------------------------------- #------------------------------------------------ create the resore directory if it doesn't already exist--------------------------------------------------
if [ ! -d $backup ] if [ ! -d $backup ]