commit 38974e99d821d3cbfdc6a602045f2998e79a86c8 parent 37d06fe86f7bc98ed03a7fe29aa90cf1b2c41882 Author: Alex Balgavy <alex@balgavy.eu> Date: Mon, 11 Apr 2022 16:49:47 +0200 emacs: settings for org block evaluation Diffstat:
M | emacs/config.org | | | 12 | ++++++++++-- |
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/emacs/config.org b/emacs/config.org @@ -253,10 +253,18 @@ In org mode, I want to use bullets instead of stars, so I also install ~org-bull *** More languages #+begin_src emacs-lisp +(use-package inf-ruby) +#+end_src +#+begin_src emacs-lisp (org-babel-do-load-languages 'org-babel-load-languages - '((emacs-lisp . nil) - (R . t))) + '((emacs-lisp . t) + (R . t) + (python . t) + (ruby . t))) + + (setq org-babel-python-command "python3") + (setq org-confirm-babel-evaluate nil) #+end_src *** Org mode settings Furthermore, tags were getting cut off, so I manually set the best column to display them.