add my best guess to a packer configuration
This commit is contained in:
parent
f0d8aa0fd7
commit
b987927c4c
1 changed files with 23 additions and 0 deletions
23
README.org
23
README.org
|
|
@ -38,6 +38,29 @@ you to add anything extra to your ~init.el~.
|
||||||
},
|
},
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
*** Packer
|
||||||
|
|
||||||
|
#+begin_src lua
|
||||||
|
use {
|
||||||
|
"mrshmllow/orgmode-babel.nvim",
|
||||||
|
requires = {
|
||||||
|
"nvim-orgmode/orgmode",
|
||||||
|
"nvim-treesitter/nvim-treesitter"
|
||||||
|
},
|
||||||
|
cmd = { "OrgExecute", "OrgTangle" },
|
||||||
|
opt = true,
|
||||||
|
config = function ()
|
||||||
|
require("orgmode-babel").setup({
|
||||||
|
-- by default, none are enabled
|
||||||
|
langs = { "python", "lua", ... }
|
||||||
|
|
||||||
|
-- paths to emacs packages to additionally load
|
||||||
|
load_paths = {}
|
||||||
|
})
|
||||||
|
end
|
||||||
|
}
|
||||||
|
#+end_src
|
||||||
|
|
||||||
** Usage
|
** Usage
|
||||||
|
|
||||||
All commands accept a ~!~ to skip confirmation.
|
All commands accept a ~!~ to skip confirmation.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue