From b37f95383c2d675038f9016720e3cb0a59e2a90c Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Fri, 5 Feb 2021 15:55:50 -0800 Subject: [PATCH 1/3] Wrap vmstat --- dotfiles/zshrc.d/vmstat.zsh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 dotfiles/zshrc.d/vmstat.zsh diff --git a/dotfiles/zshrc.d/vmstat.zsh b/dotfiles/zshrc.d/vmstat.zsh new file mode 100644 index 0000000..c4426a8 --- /dev/null +++ b/dotfiles/zshrc.d/vmstat.zsh @@ -0,0 +1,7 @@ +function vmstat { + local _extra_args + if [ "$(tput cols)" -gt 80 ] ; then + _extra_args="-w" + fi + command vmstat ${_extra_args} "$@" +} From 3170a41c4ba6615e7734d1c8254c11306f7cdeee Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Fri, 5 Feb 2021 15:55:59 -0800 Subject: [PATCH 2/3] Update rsync ignore --- dotfiles/rsync_ignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dotfiles/rsync_ignore b/dotfiles/rsync_ignore index 30f4f9d..3ce26b4 100644 --- a/dotfiles/rsync_ignore +++ b/dotfiles/rsync_ignore @@ -5,11 +5,14 @@ .arduino* .bundle .cache +.dropbox-dist .gradle .histfile .local/share/Steam .local/share/Trash +.local/lib .rvm* +.sliver .sqlite_history .thumbnails .wine From 9e3b929a4bcca5c1428d3f988d1327d65e46f70a Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Sat, 6 Feb 2021 16:12:05 -0800 Subject: [PATCH 3/3] Default branch to main. --- dotfiles/gitconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dotfiles/gitconfig b/dotfiles/gitconfig index e1906fa..317fcec 100644 --- a/dotfiles/gitconfig +++ b/dotfiles/gitconfig @@ -69,3 +69,5 @@ path = ~/.gitconfig.local [pull] rebase = false +[init] + defaultBranch = main