From cb6dfa4ec33ca1f00fb9d0659a19287798134561 Mon Sep 17 00:00:00 2001 From: Paul Trowbridge Date: Wed, 27 Apr 2022 20:11:01 -0400 Subject: [PATCH] setup inputrc to disable the bell --- .bashrc | 3 ++- .inputrc | 1 + setup.sh | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 .inputrc diff --git a/.bashrc b/.bashrc index 9733ce1..95efd7d 100644 --- a/.bashrc +++ b/.bashrc @@ -119,7 +119,8 @@ fi EDITOR=/usr/bin/vim.basic PAGER="less" LESS="-S" -# export PG="psql -U ptrowbridge -d ubm -p 5432 -h 192.168.1.110" +export PG="psql -U ptrowbridge -d ubm -p 54329 -h hptrow.me" +export PGD="psql -U ptrowbridge -d ubm -p 54339 -h hptrow.me" # GOPATH=$HOME/go # function _update_ps1() { diff --git a/.inputrc b/.inputrc new file mode 100644 index 0000000..ac81a39 --- /dev/null +++ b/.inputrc @@ -0,0 +1 @@ +set bell-style none diff --git a/setup.sh b/setup.sh index ffc1325..6b95597 100755 --- a/setup.sh +++ b/setup.sh @@ -5,7 +5,7 @@ dir=~/dot_config backup=~/dot_config_backup -files=".bashrc .vimrc .tmux.conf .psqlrc .gitconfig" +files=".bashrc .vimrc .tmux.conf .psqlrc .gitconfig .inputrc" #-------------------------------------------------install debian tooling-----------------------------------------------------------------------------------