Skip to content

Latest commit

 

History

History
60 lines (55 loc) · 1.47 KB

installation.org

File metadata and controls

60 lines (55 loc) · 1.47 KB

Installation

Installation methods

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

  1. lazy.nvim (Recommended)
    {
      '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
    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
    Plug 'nvim-orgmode/orgmode'
    
    lua << EOF
    require('orgmode').setup({
      org_agenda_files = '~/orgfiles/**/*',
      org_default_notes_file = '~/orgfiles/refile.org',
    })
    EOF
        
  4. dein.vim
    call dein#add('nvim-orgmode/orgmode')
    
     lua << EOF
     require('orgmode').setup({
       org_agenda_files = '~/orgfiles/**/*',
       org_default_notes_file = '~/orgfiles/refile.org',
     })
     EOF
        

Useful links