fix missing , in lua examples
Co-authored-by: refaelsh <refaelsh@pm.me>
This commit is contained in:
parent
c1c209c901
commit
29e1efd20a
1 changed files with 2 additions and 2 deletions
|
|
@ -30,7 +30,7 @@ you to add anything extra to your ~init.el~.
|
||||||
cmd = { "OrgExecute", "OrgTangle" },
|
cmd = { "OrgExecute", "OrgTangle" },
|
||||||
opts = {
|
opts = {
|
||||||
-- by default, none are enabled
|
-- by default, none are enabled
|
||||||
langs = { "python", "lua", ... }
|
langs = { "python", "lua", ... },
|
||||||
|
|
||||||
-- paths to emacs packages to additionally load
|
-- paths to emacs packages to additionally load
|
||||||
load_paths = {}
|
load_paths = {}
|
||||||
|
|
@ -52,7 +52,7 @@ use {
|
||||||
config = function ()
|
config = function ()
|
||||||
require("orgmode-babel").setup({
|
require("orgmode-babel").setup({
|
||||||
-- by default, none are enabled
|
-- by default, none are enabled
|
||||||
langs = { "python", "lua", ... }
|
langs = { "python", "lua", ... },
|
||||||
|
|
||||||
-- paths to emacs packages to additionally load
|
-- paths to emacs packages to additionally load
|
||||||
load_paths = {}
|
load_paths = {}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue