[zsh] Remove all the ShellLog calls -- just too slow :(

This commit is contained in:
Eryn Wells 2022-01-22 09:39:51 -08:00
parent a13ecc9e4d
commit 1c80ab1de4
16 changed files with 0 additions and 38 deletions

View file

@ -5,8 +5,6 @@ autoload binary_exists
function init_rc_aliases
{
ShellLog -l 'debug' "Setting up shell aliases"
alias j='jobs'
alias h='history'
alias df='df -h'
@ -28,13 +26,11 @@ function init_rc_aliases
binary_exists ledger && alias l='ledger'
binary_exists gpg2 && alias gpg='gpg2'
ShellLog -l debug 'Setting up suffix aliases'
alias -s c='vim'
alias -s tex='vim'
alias -s txt='vim'
alias -s xml='vim'
alias -s jar='java -jar'
}
init_rc_aliases "$@"