diff options
Diffstat (limited to '.emacs.d/modes/init-org-mode.el')
-rw-r--r-- | .emacs.d/modes/init-org-mode.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.emacs.d/modes/init-org-mode.el b/.emacs.d/modes/init-org-mode.el index 0644aa4..f402902 100644 --- a/.emacs.d/modes/init-org-mode.el +++ b/.emacs.d/modes/init-org-mode.el @@ -1,6 +1,9 @@ (use-package org :after evil :commands org-agenda + :hook ((org-mode . (lambda () (setq tab-width 4)))) + :init + (setq org-src-tab-acts-natively t) :config (require 'org-tempo) (setq org-directory "~/notes/") |