#+HTML:

* nvim-orgmode
#+HTML:

#+HTML:

#+HTML:

Orgmode clone written in Lua for Neovim
[[#installation][Installation]] • [[#docs][Docs]] • [[#showcase][Showcase]] • [[file:./docs/troubleshoot.org][Troubleshoot]] • [[#plugins][Plugins]] • [[file:./docs/contributing.org][Contributing]] • [[#thanks-to][Kudos]]
#+HTML:
** Quickstart
*** Requirements
- Neovim 0.10.0 or later
*** Installation
:PROPERTIES:
:CUSTOM_ID: installation
:END:
Use your favourite package manager. We recommend [[https://github.com/folke/lazy.nvim][lazy.nvim]]:
#+BEGIN_SRC lua
{
'nvim-orgmode/orgmode',
event = 'VeryLazy',
ft = { 'org' },
config = function()
-- Setup orgmode
require('orgmode').setup({
org_agenda_files = '~/orgfiles/**/*',
org_default_notes_file = '~/orgfiles/refile.org',
})
-- NOTE: If you are using nvim-treesitter with ~ensure_installed = "all"~ option
-- add ~org~ to ignore_install
-- require('nvim-treesitter.configs').setup({
-- ensure_installed = 'all',
-- ignore_install = { 'org' },
-- })
end,
}
#+END_SRC
For more installation options see [[file:./docs/installation.org][Installation]] page.
*** Docs
:PROPERTIES:
:CUSTOM_ID: docs
:END:
Online docs is available at [[https://nvim-orgmode.github.io]].
To view docs in orgmode format in Neovim, run =:Org help=.
Vim help docs is available at =:help orgmode.txt=
*** Usage
- *Open agenda prompt*: =