org-mode set M-RET to not split line unless in a table

This commit is contained in:
Evie Litherland-Smith 2024-03-20 10:35:15 +00:00
parent 73bcd8f56b
commit 29fab40d02

View file

@ -36,6 +36,10 @@ For reference information, see [[https://orgmode.com][Org-mode website]]
(use-package org
:ensure t
:custom
(org-M-RET-may-split-line '((default . nil)
(headline . nil)
(item . nil)
(table . t)))
(org-babel-load-languages '((emacs-lisp . t)
(lua . t)
(python . t)))