Attempting to install nvim-orgmode on LazyVim #762
-
I am attempting to install nvim-orgmode on LazyVim. Error detected while processing /home/wolfv/.config/nvim/init.lua: The init.lau file is attached: init.lua.txt I am new to neovim and don't know Lau. NVIM v0.10.0 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
Follow instructions how to add plugin here https://www.lazyvim.org/configuration/plugins So in this case, create a file in return {
'nvim-orgmode/orgmode',
event = 'VeryLazy',
ft = { 'org' },
config = function()
require('orgmode').setup({
org_agenda_files = '~/orgfiles/**/*',
org_default_notes_file = '~/orgfiles/refile.org',
})
end,
} |
Beta Was this translation helpful? Give feedback.
You forgot the
return
.This needs to be in
nvim-orgmode.lua
file: