#+begin_src elisp
(setq org-startup-indented t)
#+end_src
+** Org-babel
+#+begin_src elisp
+ (org-babel-do-load-languages
+ 'org-babel-load-languages
+ '((python . t)))
+#+end_src
+** Org-contrib
+#+begin_src elisp
+ (use-package org-contrib
+ :config
+ (require 'ox-extra)
+ (ox-extras-activate '(ignore-headlines)))
+#+end_src
+
* Project Management
** Projectile
#+begin_src elisp
(setq which-key-idle-delay 0.3))
(custom-set-faces
+ ;; custom-set-faces was added by Custom.
+ ;; If you edit it by hand, you could mess it up, so be careful.
+ ;; Your init file should contain only one such instance.
+ ;; If there is more than one, they won't work right.
'(org-block-begin-line ((t (:inherit default :background nil))))
'(org-block-end-line ((t (:inherit default :background nil)))))
(setq org-startup-indented t)
+(org-babel-do-load-languages
+ 'org-babel-load-languages
+ '((python . t)))
+
+(use-package org-contrib
+ :config
+ (require 'ox-extra)
+ (ox-extras-activate '(ignore-headlines)))
+
(use-package projectile
:bind-keymap
("C-c p" . projectile-command-map)