This commit is contained in:
David Tomaschik
2021-02-17 23:47:39 -08:00
3 changed files with 12 additions and 0 deletions

View File

@@ -69,3 +69,5 @@
path = ~/.gitconfig.local
[pull]
rebase = false
[init]
defaultBranch = main

View File

@@ -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

View File

@@ -0,0 +1,7 @@
function vmstat {
local _extra_args
if [ "$(tput cols)" -gt 80 ] ; then
_extra_args="-w"
fi
command vmstat ${_extra_args} "$@"
}