aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/orgmode.lua
blob: 0945852a6d19277f7e3a5f7e5ab56b377d23f0c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
return {
	{
		"nvim-orgmode/orgmode",
		config = function()
			require("orgmode").setup({
				org_agenda_files = "~/orgfiles/**/*",
				org_default_notes_file = "~/orgfiles/refile.org",
			})
		end,
	},
	{
		"akinsho/org-bullets.nvim",
		config = function()
			require("org-bullets").setup()
		end,
	},
}