diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-10-22 01:02:24 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-10-22 01:02:24 -0400 |
commit | a960d850b2230ea308f13b749d9fa02f347512c2 (patch) | |
tree | c6bd505ee40c6dc14bd6a05305f0ec629ce9fbda | |
parent | 6b79f86027d90847f6cb1c09fd99ce6d29c78938 (diff) | |
download | emacs.d-a960d850b2230ea308f13b749d9fa02f347512c2.tar.gz |
python: Don't try to guess indentation level
-rw-r--r-- | lisp/init-python.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/init-python.el b/lisp/init-python.el index b27472f..b68da61 100644 --- a/lisp/init-python.el +++ b/lisp/init-python.el @@ -1,4 +1,5 @@ -(setq python-fill-docstring-style 'pep-257-nn) +(setq python-fill-docstring-style 'pep-257-nn + python-indent-guess-indent-offset nil) (setq python-shell-interpreter "ipython" python-shell-prompt-detect-enabled nil) |