summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-09-15 18:01:05 -0700
committerFranck Cuny <franck@fcuny.net>2022-09-15 18:01:05 -0700
commite9a160947dc2b85480c98cf4a6c942050c146ca1 (patch)
tree7643deb0ce498731e483573bcf50e8e7c6b6920a
parentfeat(UI): use the default theme (diff)
downloademacs.d-e9a160947dc2b85480c98cf4a6c942050c146ca1.tar.gz
fix(prog): set python indentation to 4 spaces
That's what everyone use.

Change-Id: I312dd88218e2d82be0aad8fd6377483ffb2c0390
-rw-r--r--emacs/custom/my-prog.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/custom/my-prog.el b/emacs/custom/my-prog.el
index 7cbc2c7..c4865a5 100644
--- a/emacs/custom/my-prog.el
+++ b/emacs/custom/my-prog.el
@@ -62,7 +62,7 @@
 (add-hook 'sh-mode-hook 'my/sh-mode-hook)
 
 ;; set the indent level for python
-(customize-set-variable 'python-indent-offset 2)
+(customize-set-variable 'python-indent-offset 4)
 
 (defun my/makefile-mode-hook ()
   "Hooks for `makefile-mode'."