add ipython to dotfiles

This commit is contained in:
Valentin Boettcher 2022-03-04 18:36:19 +01:00
parent 81985f2c41
commit 461b8f9f6e
3 changed files with 11 additions and 0 deletions

2
dots/ipython/.link Normal file
View file

@ -0,0 +1,2 @@
TASKNAME="Configure Ipython"
LINKTO=".ipython/profile_default/startup"

View file

@ -0,0 +1,7 @@
try:
%config InlineBackend.figure_formats = ['svg']
%matplotlib inline
import matplotlib.pyplot as plt
plt.style.use('ggplot')
except Exception:
pass

View file

@ -0,0 +1,2 @@
%load_ext autoreload
%autoreload 2