summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2020-10-25 18:08:32 +0100
committerRené 'Necoro' Neumann <necoro@necoro.eu>2020-10-25 18:08:32 +0100
commit20d908e1ef8216c33357aa74259f700b546877c5 (patch)
treed527589483add9a7f393ee1eb345687a34404be5
parentfc0a5af2a1ded5450af362a5155dc7a41df9ca36 (diff)
downloaddotfiles-20d908e1ef8216c33357aa74259f700b546877c5.tar.gz
dotfiles-20d908e1ef8216c33357aa74259f700b546877c5.tar.bz2
dotfiles-20d908e1ef8216c33357aa74259f700b546877c5.zip
Remove ipython config
-rw-r--r--.config/ipython/profile_default/ipython_config.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/.config/ipython/profile_default/ipython_config.py b/.config/ipython/profile_default/ipython_config.py
deleted file mode 100644
index 13fc9c4..0000000
--- a/.config/ipython/profile_default/ipython_config.py
+++ /dev/null
@@ -1,20 +0,0 @@
-# Configuration file for ipython.
-
-c = get_config()
-
-# No newlines inbetween lines.
-c.TerminalInteractiveShell.separate_in = ''
-
-# Make IPython automatically call any callable object even if you didn't type
-# explicit parentheses. For example, 'str 43' becomes 'str(43)' automatically.
-# The value can be '0' to disable the feature, '1' for 'smart' autocall, where
-# it is not applied if there are no more arguments on the line, and '2' for
-# 'full' autocall, where all callable objects are automatically called (even if
-# no arguments are present).
-c.TerminalInteractiveShell.autocall = 1
-
-# Set to confirm when you try to exit IPython with an EOF (Control-D in Unix,
-# Control-Z/Enter in Windows). By typing 'exit' or 'quit', you can force a
-# direct exit without any confirmation.
-c.TerminalInteractiveShell.confirm_exit = False
-