Stripping out anything unused in .oh-my-zsh

This commit is contained in:
Nathan Stilwell 2017-04-12 00:28:27 -04:00
commit ed2ef5a2b0
No known key found for this signature in database
GPG key ID: 47459090870D1391
22 changed files with 22 additions and 595 deletions

View file

@ -2,16 +2,7 @@ function zsh_stats() {
history | awk '{CMD[$2]++;count++;}END { for (a in CMD)print CMD[a] " " CMD[a]/count*100 "% " a;}' | grep -v "./" | column -c3 -s " " -t | sort -nr | nl | head -n20
}
function uninstall_oh_my_zsh() {
/usr/bin/env ZSH=$ZSH /bin/sh $ZSH/tools/uninstall.sh
}
function upgrade_oh_my_zsh() {
/usr/bin/env ZSH=$ZSH /bin/sh $ZSH/tools/upgrade.sh
}
function take() {
mkdir -p $1
cd $1
}