From 322aea3556a88e175abcdff2254e4aa3b95b3eb0 Mon Sep 17 00:00:00 2001 From: jon Date: Wed, 14 Oct 2020 16:09:31 -0500 Subject: [PATCH 1/5] Colorizer config update --- vim/.vimrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vim/.vimrc b/vim/.vimrc index 8508d90..368522a 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -104,7 +104,8 @@ map :NERDTreeToggle let g:jedi#popup_select_first = 0 "colorizer plugin -let g:colorizer_auto_color = 1 +"let g:colorizer_auto_color = 1 +let g:colorizer_auto_filetype='css,html,c' call plug#begin('~/.vim/plugged') " vim-plug From 5bb78c7915117a8a45ca7ba16d53cb5726d7159e Mon Sep 17 00:00:00 2001 From: jon Date: Sat, 14 Nov 2020 14:47:16 -0600 Subject: [PATCH 2/5] Updated bash history and added page up/down bindings to tmux --- bash/.bashrc | 7 +++++-- tmux/.tmux.conf | 6 ++++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/bash/.bashrc b/bash/.bashrc index be4358d..fe15ad6 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -35,6 +35,9 @@ short_find() { } alias f=short_find +# enable va-api in firefox +export MOZ_X11_EGL=1 + #not sure why fedora doesnt set this or what it might break but here we go export XDG_CONFIG_HOME=$HOME/.config @@ -71,8 +74,8 @@ export NNN_FALLBACK_OPENER=xdg-open # HISTORY #add date/time to history export HISTTIMEFORMAT="%F %T: " -export HISTSIZE=2000 -export HISTFILESIZE=5000 +export HISTSIZE=100000 +export HISTFILESIZE=1000000 #if tty -s; then if [ -t 1 ]; then diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 3e43ffe..c315a3b 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -30,6 +30,12 @@ bind j select-pane -D bind k select-pane -U bind l select-pane -R +# page up/down +bind-key -n S-PageUp copy-mode -u +bind-key -n S-PageDown copy-mode +bind-key -T copy-mode S-PageUp send-keys -X page-up +bind-key -T copy-mode S-PageDown send-keys -X page-down + #join window bind-key @ command-prompt -p "create pane from:" "join-pane -s ':%%'" From f341fe24c0eb6286b4d471d98613b9b2ba0aeed9 Mon Sep 17 00:00:00 2001 From: jon Date: Fri, 20 Nov 2020 12:37:25 -0600 Subject: [PATCH 3/5] Setup compton for compositing and true transparency in rxvt --- x/.Xresources | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/x/.Xresources b/x/.Xresources index 7567347..2d6cfd7 100644 --- a/x/.Xresources +++ b/x/.Xresources @@ -2,12 +2,13 @@ URxvt*scrollBar: false URxvt.font: xft:Terminus:size=14:antialias=true URxvt.boldFont: xft:Terminus:bold:size=14:antialias=true -URxvt*inheritPixmap: true -URxvt*transparent: true -URxvt*shading: 20 +!URxvt*inheritPixmap: true +!URxvt*transparent: true +!URxvt*shading: 6 !!! Real transparency (compositing) -!urxvt.depth: 32 +URxvt.depth: 32 +URxvt.background: rgba:0000/0000/0000/eeee !urxvt*background: rgba:0000/0000/0200/c800 !URxvt.background: rgba:1111/1111/1111/dddd @@ -17,7 +18,7 @@ URxvt*url-launcher: /usr/bin/xdg-open URxvt*internalBorder: 20 ! URxvt.blurRadius: 25 -URxvt*.termName: rxvt-unicode-256color +!URxvt*.termName: rxvt-unicode-256color ! special *.foreground: #c5c8c6 From 51966d06bb1ad640aa895e69e54bb21b8a954ffe Mon Sep 17 00:00:00 2001 From: jon Date: Sun, 29 Nov 2020 08:56:25 -0600 Subject: [PATCH 4/5] Added df alias, updated dmesg alias with human readable time --- bash/.bashrc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bash/.bashrc b/bash/.bashrc index fe15ad6..dc3799d 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -18,16 +18,18 @@ fi ## 4 - right/left four chars export LESS='-C -M -j 3 -R -# 2' -# User specific aliases and functions +### User specific aliases and functions +# before you remove, you can unalias with: \ alias l.='ls -lh --time-style=long-iso --color' 2>/dev/null alias l='ls -lh --color --time-style=long' alias ll='ls -lAh --color --time-style=long' alias lsd='l -d */' alias p='ping' -alias dmesg='dmesg -H' +alias dmesg='dmesg -HT' alias ip='ip -c' #alias s='sudo $(history -p !!)' alias s='sudo' +alias df='sudo df -hT -x tmpfs -x devtmpfs' ## function and alias for short find short_find() { From e18dad8fe2b4d8ab98da4f90ccfc4ba3850fc530 Mon Sep 17 00:00:00 2001 From: jon Date: Mon, 4 Jan 2021 20:59:20 -0600 Subject: [PATCH 5/5] Updated git config, saved new toprc --- config/.config/git/config | 18 ++++++++++++++++++ config/.config/procps/toprc | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 config/.config/git/config diff --git a/config/.config/git/config b/config/.config/git/config new file mode 100644 index 0000000..cf65111 --- /dev/null +++ b/config/.config/git/config @@ -0,0 +1,18 @@ +[user] + name = "jon" + email = "jon@f01" +[credential] + helper = cache +[alias] + co = checkout + br = branch + ci = commit + st = status + cm = commit -m + l = log --oneline + + unstage = reset HEAD -- + undo = reset --soft HEAD^ + sl = stash list --pretty=format:\"%C(red)%h%C(reset) - %C(dim yellow)(%C(bold magenta)%gd%C(dim yellow))%C(reset) %<(70,trunc)%s %C(gree n)(%cr) %C(bold blue)<%an>%C(reset)\" + discard = !git stash save --keep-index --include-untracked && git stash drop + ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat diff --git a/config/.config/procps/toprc b/config/.config/procps/toprc index 2f2a79e..e80c6d7 100644 --- a/config/.config/procps/toprc +++ b/config/.config/procps/toprc @@ -1,7 +1,7 @@ top's Config File (Linux processes with windows) Id:i, Mode_altscr=0, Mode_irixps=1, Delay_time=1.0, Curwin=0 Def fieldscur=¥¨³´»½ÀÄ·¹Å&')*+,-./012568<>º?ABCFGHIJKLMÎOPQRSTUVWXYZ[\]^_`abcdefghij - winflags=950076, sortindx=21, maxtasks=0, graph_cpus=0, graph_mems=0 + winflags=949564, sortindx=18, maxtasks=0, graph_cpus=0, graph_mems=0 summclr=1, msgsclr=1, headclr=3, taskclr=1 Job fieldscur=¥¦¹·º(³´Ä»½@<§Å)*+,-./012568>?ABCFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghij winflags=193844, sortindx=0, maxtasks=0, graph_cpus=0, graph_mems=0