diff options
Diffstat (limited to 'lisp/init-python.el')
-rw-r--r-- | lisp/init-python.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lisp/init-python.el b/lisp/init-python.el new file mode 100644 index 0000000..eee16f7 --- /dev/null +++ b/lisp/init-python.el @@ -0,0 +1,10 @@ +;;---------------------------------------------------------------------------- +;; Python Mode +;;---------------------------------------------------------------------------- +(add-hook 'python-mode-hook + (lambda () + (setq indent-tabs-mode nil) + (setq python-indent-guess-indent-offset nil) + (setq python-indent-offset 4))) + +(provide 'init-python) |