From fcf67bfca3a44481a6a9f621425f340bf8effcd3 Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Mon, 1 Apr 2019 23:51:51 -0400 Subject: [PATCH] fixed python indentation --- conf.org | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/conf.org b/conf.org index 2b20c52..6bf8175 100644 --- a/conf.org +++ b/conf.org @@ -669,7 +669,8 @@ A few caveats when using =R= ;; make python tabs 4 chars (add-hook 'python-mode-hook (lambda () - (setq indent-tabs-mode t) + (setq indent-tabs-mode nil) + (setq py-indent-tabs-mode nil) (setq tab-width 4) (setq python-offset 4)))