I can improve the output quality of IPython quite dramatically by using the following commands
%matplotlib inline %config InlineBackend.figure_format = 'svg' import matplotlib.pyplot as plt plt.plot([1,2],[1,2]) Is there something equivalent in Julia? I know magics don't work in IJulia, but there must be a place I can change the config file manually. Thanks!
