X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/blobdiff_plain/a51791d1487a9673b3749135456f39d5e5b724ca..916478eb344d619ecf930c164540f6fd41002626:/config/nvim/lua/plugins.lua?ds=sidebyside diff --git a/config/nvim/lua/plugins.lua b/config/nvim/lua/plugins.lua index 24154d9..e17b35b 100644 --- a/config/nvim/lua/plugins.lua +++ b/config/nvim/lua/plugins.lua @@ -69,5 +69,20 @@ require('lazy').setup({ -- Tools 'vim-scripts/LargeFile', 'tpope/vim-fugitive', - 'milkypostman/vim-togglelist' + 'milkypostman/vim-togglelist', + + -- Org Mode + { 'nvim-orgmode/orgmode', + event = 'VeryLazy', + config = function() + -- Load treesitter grammar for org + require('orgmode').setup_ts_grammar() + + -- Setup orgmode + require('orgmode').setup({ + org_agenda_files = '~/brain/**/*.org', + org_default_notes_file = '~/brain/inbox.org', + }) + end, + } })