Alias R when available

This commit is contained in:
Dan Buch 2020-09-15 19:21:33 -04:00
parent 9d52d7df49
commit 6c16828a99
Signed by: meatballhat
GPG Key ID: 9685130D8B763EA7

4
zshrc
View File

@ -109,6 +109,10 @@ if command -v xdg-open &>/dev/null; then
alias open=xdg-open
fi
if R --version &>/dev/null; then
alias R='R --no-save --no-restore'
fi
unsetopt correct_all
bindkey '^R' history-incremental-search-backward