From 283d715c08cb583bac94ba6d1a68c3bc033ba2e4 Mon Sep 17 00:00:00 2001 From: anon Date: Sun, 16 Jun 2024 18:06:39 +0200 Subject: [PATCH] python stuff --- .gitignore | 2 ++ python/.ipython/profile_default/ipython_config.py | 2 ++ python/.pythonrc | 2 ++ 3 files changed, 6 insertions(+) create mode 100644 python/.ipython/profile_default/ipython_config.py diff --git a/.gitignore b/.gitignore index 81c3d65..f305853 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,5 @@ cache.db .cache/* tags.vim sigs.vim +*.sqlite +python/.ipython/profile_default/startup/README diff --git a/python/.ipython/profile_default/ipython_config.py b/python/.ipython/profile_default/ipython_config.py new file mode 100644 index 0000000..ab6554f --- /dev/null +++ b/python/.ipython/profile_default/ipython_config.py @@ -0,0 +1,2 @@ +c.InteractiveShellApp.extensions = ['autoreload'] +c.InteractiveShellApp.exec_lines = ['%autoreload 2'] diff --git a/python/.pythonrc b/python/.pythonrc index 83dbe7e..2e55759 100644 --- a/python/.pythonrc +++ b/python/.pythonrc @@ -5,3 +5,5 @@ from numpy import * from time import * import re +#try: import colored_traceback.auto +#except ImportError: pass