From 34e1e7bc09fb057d01dce726d582b352607c36fe Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Thu, 23 Jul 2015 09:01:55 +0100 Subject: [PATCH] Set tab-width to 4 for python-mode --- mode-customizations/python-mode.el | 1 + 1 file changed, 1 insertion(+) diff --git a/mode-customizations/python-mode.el b/mode-customizations/python-mode.el index 129c56e..072deef 100644 --- a/mode-customizations/python-mode.el +++ b/mode-customizations/python-mode.el @@ -6,6 +6,7 @@ (hs-minor-mode 1) (auto-complete-mode) (subword-mode) + (setq tab-width 4) (highlight-indentation-mode) (highlight-indentation-current-column-mode) (define-key python-mode-map (kbd "RET") 'newline-and-indent))