mrshmllow / orgmode-babel.nvim

An experimental plugin that evaluates and tangles code blocks in nvim-orgmode using babel itself.
GNU General Public License v3.0
22 stars 2 forks source link

Nothing works after plugin installation #1

Closed refaelsh closed 1 year ago

refaelsh commented 1 year ago

I installed the plugin using packer like this:

use 'mrshmllow/orgmode-babel.nvim'

No new commands were added. Specifically no OrgTangle.

mrshmllow commented 1 year ago

You must add require("orgmode-babel").setup({ opts })

mrshmllow commented 1 year ago

I added an example packer configuration

refaelsh commented 1 year ago

I added an example packer configuration

The example did not work. I needed to change this line:

langs = { "python", "lua", ... }

to this line:

langs = { "python", "lua", "nix" },

I am not really sure why, I am not a big Lua knower.

Thank you :-)