Skip to content

Installation

Installation methods

Orgmode can be installed with any package manager. Here are few examples:

  1. lazy.nvim (Recommended)

    lua
    {
      'nvim-orgmode/orgmode',
      event = 'VeryLazy',
      config = function()
        require('orgmode').setup({
          org_agenda_files = '~/orgfiles/**/*',
          org_default_notes_file = '~/orgfiles/refile.org',
        })
      end,
    }
  2. pckr.nvim

    lua
    require('pckr').add({
      {
       'nvim-orgmode/orgmode',
         config = function()
           require('orgmode').setup({
             org_agenda_files = '~/orgfiles/**/*',
             org_default_notes_file = '~/orgfiles/refile.org',
           })
         end
      }
    })
  3. vim-plug

    vim
    Plug 'nvim-orgmode/orgmode'
    
    lua << EOF
    require('orgmode').setup({
      org_agenda_files = '~/orgfiles/**/*',
      org_default_notes_file = '~/orgfiles/refile.org',
    })
    EOF
  4. dein.vim

    vim
    call dein#add('nvim-orgmode/orgmode')
    
     lua << EOF
     require('orgmode').setup({
       org_agenda_files = '~/orgfiles/**/*',
       org_default_notes_file = '~/orgfiles/refile.org',
     })
     EOF