Compare commits

...

50 Commits

Author SHA1 Message Date
b56ff1d67f merge clean 2023-04-11 11:41:34 -04:00
9bf8ff35a7 convert line endings to LF 2023-04-11 11:36:20 -04:00
f990d4cd91 merge clean 2023-04-11 11:27:56 -04:00
94c6854b3f create local template 2023-04-11 11:15:18 -04:00
b7c644bcca git aliases 2023-04-11 09:44:32 -04:00
c76363a2ec dont pipe to pager 2023-04-11 08:57:47 -04:00
7e1380cee3 dont pipe to paper 2023-04-10 09:13:21 -04:00
064ef8cdb2 merge hc 2023-04-07 21:56:17 -04:00
7d0528f634 create a git log alias, and remove tmuxline from vim 2023-04-07 09:29:01 -04:00
ead0f980cc drop curls 2023-04-04 13:04:25 -04:00
fe863dd3ec merge clean into 2023-04-04 13:03:55 -04:00
a64d47468d move aliases 2023-04-04 12:54:31 -04:00
1f69c5ae8c update 2023-04-04 12:45:00 -04:00
f13e6c0788 usmidsap01 current state 2023-04-04 10:32:58 -04:00
6ffa44ddf2 nvim alias and tmux theme 2023-04-04 10:28:29 -04:00
c508d8b4ea Merge branch 'clean' of ssh://gitea.hptrow.me/pt/dot_config into clean 2023-04-02 00:57:42 -04:00
c9440c40ed updates 2023-04-02 00:57:39 -04:00
33276ce8e9 add aliases to list open files and exec them 2023-03-24 22:28:59 -04:00
fa3bf6ff37 point to directory 2023-03-24 21:52:36 -04:00
d3842431cc updates 2023-03-24 21:00:12 -04:00
16cb1b0983 updates 2023-03-24 20:58:18 -04:00
95bcbd543b move stuff to bashrc_local 2023-03-24 20:55:52 -04:00
78876b1fe9 alias to list files with open vim buffers and execute them with psql 2023-03-13 16:46:45 -04:00
04ee4dc97c update grab 2022-09-22 16:25:30 +00:00
fd493e8e49 pull files from onedrive 2022-09-21 13:56:50 -04:00
ecda413f11 get rid of unnecessary paths 2022-05-03 10:42:41 -04:00
9b6d07193d set bell directly in bashrc 2022-05-03 09:50:17 -04:00
e45b822767 merge latest clean 2022-05-03 09:47:41 -04:00
fe34917fb5 merge clean 2022-05-03 09:45:37 -04:00
98faeb58c9 set default pspg and import tsx syntax for vim 2022-05-02 12:19:17 -04:00
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
1429d228e5 disable the vim bell 2022-04-27 20:14:20 -04:00
cb6dfa4ec3 setup inputrc to disable the bell 2022-04-27 20:11:01 -04:00
8f48bd0aec get rid of export 2022-03-01 09:24:08 -05:00
55251c87d5 updates 2022-03-01 09:19:34 -05:00
b279da9951 color scheme and wrapping off 2021-06-24 09:07:22 -04:00
fb31622c31 turn on mouse support 2021-06-07 21:09:58 -04:00
08d1b789d3 get rid of quick stats, add alias to push to all remotes, and indentation 2021-05-27 14:48:02 -04:00
376a0f099b add pushall to push to all available remotes 2021-05-27 14:45:31 -04:00
bef3880e68 get rid of tabular plugin and disable folding 2021-05-21 09:50:49 -04:00
f8a52a1308 turn mouse on 2021-05-21 08:56:44 -04:00
168e40d440 tmux mouse 2021-05-17 09:01:43 -04:00
a6e3542ef2 add dev postgres 2021-04-16 08:04:07 -04:00
337119fa02 scroll the whole page without moving the cursor, and remap arrows to re-size splits 2021-04-07 10:34:13 -04:00
ef8a6d4906 add mssql cmd 2021-03-08 12:22:03 -05:00
25900dc6c7 Merge branch 'master' into hc 2020-12-17 11:35:19 -05:00
874faedf0b get rid of csv plugin 2020-12-16 17:20:42 -05:00
ce4e16917c merge master 2020-12-06 23:38:47 -05:00
5f25cd020c save local branch 2020-12-06 23:37:13 -05:00
9 changed files with 149 additions and 34 deletions

38
.bashrc
View File

@ -91,6 +91,21 @@ fi
alias ll='ls -alFh'
alias la='ls -A'
alias l='ls -CF'
#alias lb='lsblk -o+FSAVAIL,FSUSED,FSUSE%,MODEL,PARTTYPENAME,STATE'
alias lb='lsblk -o+FSTYPE,FSAVAIL,FSUSED,FSUSE%,MODEL'
alias opg="lsof 2>/dev/null +D . | grep 'pg.*swp$' | awk '{print \$9}' | sed 's/\.swp//g' | sed 's/\/\./\//g'"
alias osw="lsof 2>/dev/null +D . | awk '\$NF ~ /swp$/ {print \$9}' | sed 's/\.swp//g' | sed 's/\/\./\//g'"
alias xpg="lsof 2>/dev/null +D . | grep 'pg.*swp$' | awk '{print \$9}' | sed 's/\.swp//g' | sed 's/\/\./\//g' | xargs -r $PG -f"
alias xsw="lsof 2>/dev/null +D . | grep '.*swp$' | awk '{print \$9}' | sed 's/\.swp//g' | sed 's/\/\./\//g' | xargs -r $PG -f"
alias ons='lsof +D ~/.local/state/nvim/swap/ | grep -o "/swap/.*" | cut -c 7- | tr "%" "/" | sed "s/\\.swp$//" | grep "$(pwd)"'
alias xns='lsof +D ~/.local/state/nvim/swap/ | grep -o "/swap/.*" | cut -c 7- | tr "%" "/" | sed "s/\\.swp$//" | grep "$(pwd)" | fzf | xargs -I % $PG -f %'
alias mns='fzf | xargs -I {} sqlcmd.exe -S usmidsql01 -i {}'
alias nv='~/nvim-linux64/bin/nvim'
alias gs='git status -s'
alias ga='git add .'
alias gc='git commit -v'
alias gd='git difftool'
alias gl='git log --graph --oneline --format="%C(yellow)%h %C(green)%an%Creset %C(blue)%ad%Creset %s"'
# Add an "alert" alias for long running commands. Use like so:
# sleep 10; alert
@ -119,22 +134,13 @@ fi
EDITOR=/usr/bin/vim.basic
PAGER="less"
LESS="-S"
export PSQL_PAGER="pspg"
export IPTOKEN="6ac0a563fc06ab"
export PG="psql -U ptrowbridge -d ubm -p 5432 -h 192.168.1.110"
export PGD="psql -U ptrowbridge -d ubm -p 5434 -h 192.168.1.110"
export NVM_DIR="/home/pt/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
if [ -f "$HOME/.bash-git-prompt/gitprompt.sh" ]; then
GIT_PROMPT_ONLY_IN_REPO=1
source $HOME/.bash-git-prompt/gitprompt.sh
fi
bind 'set bell-style none'
#GOPATH=$HOME/go
#function _update_ps1() {
# PS1="$($GOPATH/bin/powerline-go -error $?)"
#}
#if [ "$TERM" != "linux" ] && [ -f "$GOPATH/bin/powerline-go" ]; then
# PROMPT_COMMAND="_update_ps1; $PROMPT_COMMAND"
#fi
#deno
export DENO_INSTALL="/home/pt/.deno"
export PATH="$DENO_INSTALL/bin:$PATH"
[ -f ~/dot_config/.bashrc_local ] && source ~/dot_config/.bashrc_local

9
.bashrc_local_example Normal file
View File

@ -0,0 +1,9 @@
#export IPTOKEN=
#export PG="psql -U ptrowbridge -d ubm -p 5432 -h usmidsap01"
#export MS="sqlcmd.exe -S mid-sql02 -i"
#export JAVA_HOME=/opt/jdk-19.0.1
#export PATH=$PATH:$JAVA_HOME/bin
#export PATH=$PATH:/opt/gradle/gradle-7.6/bin
#export RUNNER_PATH=/opt/runner/
#export DB2PW=
#export PGPW=

View File

@ -2,15 +2,23 @@
email = paul@hptrow.me
name = Paul Trowbridge
[core]
autocrlf = false
autocrlf = input
editor = vim
[push]
default = simple
[alias]
quick-stats = ! /usr/local/bin/git-quick-stats
pushall = !git remote | xargs -L1 git push --all
[log]
date = format:%Y-%m-%d %H:%M:%S
date = format:%Y-%m-%d %H:%M:%S
[format]
pretty = format:'%C(yellow)%h %Cred%ad %Cblue%an %Cgreen%d %Creset%s'
pretty = format:'%C(yellow)%h %Cred%ad %Cblue%an %Cgreen%d %Creset%s'
[diff]
tool = vimdiff
tool = vimdiff
[safe]
directory = /var/www/kimai2
directory = /var/www/html/resume/
directory = /var/www/html/resume
directory = /opt/forecast_api/
directory = /opt/forecast_api
[pull]
rebase = false

1
.gitignore vendored
View File

@ -1 +1,2 @@
*.swp
.bashrc_local

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 = 0
border_type = 2
default_clipboard_format = 0
clipboard_app = 0
hist_size = 500

View File

@ -1,3 +1,4 @@
-- Switch pagers with :x and :xx commands
\set x '\\setenv PAGER ''less -S'''
\set xx '\\setenv PAGER \'pspg -bX --no-mouse\''
\timing on

View File

@ -4,12 +4,31 @@ bind -r h select-pane -L # move left
bind -r j select-pane -D # move down
bind -r k select-pane -U # move up
bind -r l select-pane -R # move right
set -g mouse on
bind -n C-PgDn next-window
bind -n C-PgUp previous-window
set -g mouse on
#plugin manager for install tmux-resurrect
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'jimeh/tmux-themepack'
set -g @themepack 'powerline/default/cyan'
#-----------------------nova---------------------------------------------
#set -g @plugin 'o0th/tmux-nova'
#set -g @nova-nerdfonts true
#set -g @nova-nerdfonts-left 
#set -g @nova-nerdfonts-right 
#set -g @nova-segment-mode "#{?client_prefix,Ω,ω}"
#set -g @nova-segment-mode-colors "#50fa7b #282a36"
#set -g @nova-segment-whoami "#(whoami)@#h"
#set -g @nova-segment-whoami-colors "#50fa7b #282a36"
#set -g @nova-pane "#I#{?pane_in_mode,  #{pane_mode},}  #W"
#set -g @nova-rows 0
#set -g @nova-segments-0-left "mode"
#set -g @nova-segments-0-right "whoami"
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'

24
.vimrc
View File

@ -9,8 +9,10 @@ Plugin 'gmarik/Vundle.vim'
Plugin 'vim-airline/vim-airline'
Plugin 'kien/ctrlp.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'edkolev/tmuxline.vim'
"Plugin 'edkolev/tmuxline.vim'
Plugin 'vim-airline/vim-airline-themes'
Plugin 'leafgarland/typescript-vim'
Plugin 'peitalin/vim-jsx-typescript'
"Plugin 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'}
" All of your Plugins must be added before the following line
call vundle#end() " required
@ -22,7 +24,9 @@ map <C-h> <C-W>h
map <C-l> <C-W>l
let NERDTreeShowHidden=1
set tabstop=4 softtabstop=0 expandtab shiftwidth=4 smarttab
colorscheme desert
set mouse=a
set nowrap
colorscheme darkblue
syntax on
set splitright
set splitbelow
@ -35,9 +39,14 @@ let g:netrw_altv = 1
let g:netrw_winsize = 25
"----airline tabs for buffers-------
let g:airline#extensions#tabline#enabled = 1
let g:airline_theme = 'dark'
let g:tmuxline_powerline_separators = 0
let g:airline_powerline_fonts = 0
let g:airline_theme = 'violet'
let g:airline_solarized_bg='dark'
let g:tmuxline_powerline_separators = 1
let g:airline_powerline_fonts = 1
"----markdown folding------------
"let g:vim_markdown_folding_disabled = 1
set nofoldenable " disable folding
"---general--------------------
let mapleader = ";"
set showcmd
map <Leader>a :bn<cr>
@ -52,7 +61,12 @@ nmap <Leader>e :NERDTreeToggle<CR>
set incsearch
set showmatch
set hlsearch
set mouse=a
"----disable the bell; t_vb is required to be set to nothing
set visualbell
set t_vb=
nnoremap \\ :noh<cr> " Clear higlighting
set nowrap
"nnoremap <esc> :noh<return><esc>
" Resize windows
nnoremap <silent> <Up> 5<C-W>+

View File

@ -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 .pspgconf"
#-------------------------------------------------install debian tooling-----------------------------------------------------------------------------------
@ -14,19 +14,19 @@ if [ "$(dpkg-query -W -f='${Status}' "curl" 2>/dev/null | grep -c "ok installed"
then
echo "curl already installed"
else
echo "installing curl"
echo "installing curl..."
apt update -q4
apt install curl -y
sudo apt install curl -y
fi
#----------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
echo "vim already installed"
else
echo "installing vim"
echo "installing vim..."
apt update -q4
apt install vim -y
sudo apt install vim -y
fi
#----------tmux-----------
@ -34,9 +34,19 @@ if [ "$(dpkg-query -W -f='${Status}' "tmux" 2>/dev/null | grep -c "ok installed"
then
echo "tmux already installed"
else
echo "installing tmux"
echo "installing tmux..."
apt update -q4
apt install tmux -y
sudo apt install tmux -y
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
sudo apt install pspg -y
fi
#------------------------------------------------ create the resore directory if it doesn't already exist--------------------------------------------------
@ -161,3 +171,16 @@ then
esac
done
fi
while true; do
read -p "do you want to install git-bash-prompt?" yn
case $yn in
[Yy]* )
git clone https://github.com/magicmonty/bash-git-prompt.git ~/.bash-git-prompt --depth=1
break;;
[Nn]* )
break;;
* ) echo "Please answer yes or no.";;
esac
done