This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
spacemacs/config/python.el

7 lines
248 B
EmacsLisp
Raw Normal View History

(add-hook 'python-mode-hook
'(lambda()
(setq indent-tabs-mode nil)
(setq indent-level 4)
(setq python-indent 4)
(setq tab-width 4)))