diff --git a/.config/nvim/lua/plugins/orgmode.lua b/.config/nvim/lua/plugins/orgmode.lua index e0135b9e..f4ac0417 100644 --- a/.config/nvim/lua/plugins/orgmode.lua +++ b/.config/nvim/lua/plugins/orgmode.lua @@ -1,9 +1,31 @@ return { - "nvim-orgmode/orgmode", - event = "VeryLazy", - ft = { "org" }, - opts = { - org_agenda_files = "~/orgfiles/**/*", - org_default_notes_file = "~/orgfiles/refile.org", + { + "nvim-orgmode/orgmode", + event = "VeryLazy", + ft = { "org" }, + opts = { + org_agenda_files = "~/orgfiles/**/*", + org_default_notes_file = "~/orgfiles/refile.org", + }, + }, + { + "chipsenkbeil/org-roam.nvim", + -- tag = "0.1.1", + dependencies = { + { + "nvim-orgmode/orgmode", + -- tag = "0.3.7", + }, + }, + config = function() + require("org-roam").setup({ + directory = "~/orgfiles/roam", + -- optional + }) + end, + }, + { + "akinsho/org-bullets.nvim", + opts = {}, }, }