From 27be52b373f52ddb158bdd24648769c20d206c4b Mon Sep 17 00:00:00 2001 Message-Id: <27be52b373f52ddb158bdd24648769c20d206c4b.1717736834.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 1 May 2016 13:42:55 +0100 Subject: [PATCH] dot/ipython_config.py: Let's just have one of these for everywhere. Organization: Straylight/Edgeware From: Mark Wooding --- dot/ipython_config.py | 16 ++++++++++++++++ setup | 1 + 2 files changed, 17 insertions(+) create mode 100644 dot/ipython_config.py diff --git a/dot/ipython_config.py b/dot/ipython_config.py new file mode 100644 index 0000000..f57feec --- /dev/null +++ b/dot/ipython_config.py @@ -0,0 +1,16 @@ +### -*-python -*- + +c = get_config() + +c.InteractiveShell.autocall = 0 +c.InteractiveShell.autoindent = True +c.InteractiveShell.automagic = False + +c.InteractiveShell.color_info = True +c.InteractiveShell.colors = 'Linux' + +c.Completer.greedy = True + +c.TerminalIPythonApp.display_banner = False +c.InteractiveShellApp.ignore_old_config=True +c.TerminalInteractiveShell.confirm_exit = False diff --git a/setup b/setup index 9ccc5b8..c4eb953 100755 --- a/setup +++ b/setup @@ -135,6 +135,7 @@ dotfiles=" emacs emacs-calc vm gnus.el ercrc.el vimrc mg zile lesskey parallel-config:.parallel/config + ipython_config.py:.ipython/profile_default/ipython_config.py ditz-config mailrc signature muttrc cgrc tigrc -- [mdw]