diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2022-08-11 16:50:17 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2022-09-14 00:45:42 +0100 |
commit | 39a060f37797d37f02bda60c921ce644766fb2d9 (patch) | |
tree | ba35c4c873e6ae30b8938c3ae02291962d5037ff | |
parent | e1f7953786ef87392f9356bb02c213d0ede50f17 (diff) | |
download | dotfiles-39a060f37797d37f02bda60c921ce644766fb2d9.tar.gz dotfiles-39a060f37797d37f02bda60c921ce644766fb2d9.tar.bz2 dotfiles-39a060f37797d37f02bda60c921ce644766fb2d9.zip |
(Emacs)~org-mode variables: todo-keywords, babel-load-languages
-wait keyword from org-todo-keywords because it's useless
+shell language capability to babel.
-rw-r--r-- | Emacs/.config/emacs/config.org | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 8fbeabe..a0ad879 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -2158,12 +2158,13 @@ Emacs was very helpful here. (org-startup-indented t) (org-tags-column 0) (org-todo-keywords - '((sequence "TODO" "WAIT" "DONE") + '((sequence "TODO" "DONE") (sequence "PROJ" "WAIT" "COMPLETE"))) (org-use-sub-superscripts '{}) (org-babel-load-languages '((emacs-lisp . t) (C . t) - (python . t))) + (python . t) + (shell . t))) (org-latex-listings 'minted) (org-latex-minted-langs '((emacs-lisp "common-lisp") (ledger "text") |