This may seem menial, but it affects my productivity. I am using R in terminal mode on Linux. Unlike the Windows IDE, Linux limits the number of columns to 80, thus making h
Set it with something like
options("width"=200)
which is in fact what I have in ~/.Rprofile. See help(options) for details.